MessageListCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // MessageListCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/13.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class MessageListModel;
  10. typedef void (^IconBlock)(NSString *type);
  11. @interface MessageListCell : UITableViewCell
  12. @property(nonatomic,strong)MessageListModel *model;
  13. @property (weak, nonatomic) IBOutlet UIImageView *iconIV;
  14. @property (weak, nonatomic) IBOutlet UIImageView *iconTag;
  15. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  16. @property (weak, nonatomic) IBOutlet UILabel *detailL;
  17. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  18. @property (weak, nonatomic) IBOutlet UILabel *redPoint;
  19. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *redPointWidth;
  20. @property (weak, nonatomic) IBOutlet UILabel *siliaoL;
  21. @property (weak, nonatomic) IBOutlet UILabel *lineL;
  22. @property(nonatomic,assign)BOOL isWhiteStyle;
  23. @property(nonatomic,copy)IconBlock iconEvent;
  24. /** 后期添加点击事件 */
  25. - (IBAction)clickIconBtn:(UIButton *)sender;
  26. +(MessageListCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath;
  27. @end