ChatFriendCell.h 941 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // ChatFriendCell.h
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/22.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class JSBadgeView;
  10. @class M80AttributedLabel;
  11. @interface ChatFriendCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *mheadimg;
  13. @property (weak, nonatomic) IBOutlet UILabel *mname;
  14. @property (weak, nonatomic) IBOutlet M80AttributedLabel *mmsg;
  15. @property (weak, nonatomic) IBOutlet UILabel *mtime;
  16. @property (weak, nonatomic) IBOutlet UIImageView *mlevel;
  17. @property (weak, nonatomic) IBOutlet UIImageView *msex;
  18. @property (weak, nonatomic) IBOutlet UIView *mcountview;
  19. //@property (weak, nonatomic) IBOutlet JSBadgeView *mjsbadge;
  20. @property (weak, nonatomic) IBOutlet UIImageView *viconImageView;
  21. @property (weak, nonatomic) IBOutlet UILabel *unReadLabel;
  22. @property (weak, nonatomic) IBOutlet UIView *unReadView;
  23. - (void)setUnReadCount:(int)count;
  24. @end