MsgSysCell.h 734 B

12345678910111213141516171819202122232425
  1. //
  2. // MsgSysCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/8/3.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MsgSysModel.h"
  10. @interface MsgSysCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *iconIV;
  12. @property (weak, nonatomic) IBOutlet UIImageView *flagIV;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *briefL;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  16. @property (weak, nonatomic) IBOutlet UILabel *lineL;
  17. @property(nonatomic,assign)BOOL isWhiteStyle;
  18. @property(nonatomic,strong)MsgSysModel *model;
  19. +(MsgSysCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath;
  20. @end