暂无描述

SysMessageCell.h 578B

123456789101112131415161718192021222324
  1. //
  2. // SysMsgTableViewCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 14/12/26.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <TTTAttributedLabel.h>
  10. #import <APAvatarImageView.h>
  11. #import "FKAppMessage.h"
  12. @interface SysMessageCell : UITableViewCell
  13. @property (nonatomic, strong) UILabel *headLabel;
  14. @property (nonatomic, strong) TTTAttributedLabel *timeLabel;
  15. @property (nonatomic, strong) TTTAttributedLabel *descLabel;
  16. @property (nonatomic, strong) UIButton *detailButton;
  17. + (CGFloat)cellHeightWith:(FKAppMessage*)item;
  18. @end