CYFriendyTableViewCell.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // CYFriendyTableViewCell.h
  3. // shiku_im
  4. //
  5. // Created by Ron on 2019/11/24.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CYFriendyTableViewCell : UITableViewCell
  11. @property (nonatomic,retain,setter=setTitle:) NSString* title;
  12. @property (nonatomic,strong) NSString* subtitle;
  13. @property (nonatomic,strong) NSString* bottomTitle;
  14. @property (nonatomic,strong) NSString* headImage;
  15. @property (nonatomic,strong) NSString* bage;
  16. @property (nonatomic,strong) NSString* roomId;
  17. @property (nonatomic,strong) NSString* userId;
  18. @property (strong, nonatomic) NSString * positionTitle;
  19. @property (nonatomic,strong) JXImageView * headImageView;
  20. @property (nonatomic) int index;
  21. @property (nonatomic, assign) NSObject* delegate;
  22. @property (nonatomic, assign) SEL didTouch;
  23. @property (nonatomic, assign) SEL didDragout;
  24. @property (nonatomic, assign) SEL didReplay;
  25. @property (nonatomic, assign) SEL didDelMsg;
  26. @property (nonatomic,strong) JXLabel* lbTitle;
  27. @property (nonatomic,strong) JXLabel* lbBottomTitle;
  28. @property (nonatomic,strong) JXLabel* lbSubTitle;
  29. @property (nonatomic,strong) JXLabel* timeLabel;
  30. @property (strong, nonatomic) UILabel * positionLabel;
  31. //@property (nonatomic, strong) JXBadgeView* bageNumber;
  32. @property (nonatomic,strong) JXImageView * notPushImageView;
  33. @property (nonatomic,strong) JXImageView * replayView;
  34. @property (nonatomic, strong) UIImageView *replayImgV;
  35. @property (nonatomic, strong) id dataObj;
  36. @property (nonatomic, strong) UIView *lineView;
  37. @property (nonatomic, assign) BOOL isSmall;
  38. @property (nonatomic, assign) BOOL isNotPush;
  39. @property (nonatomic, assign) BOOL isMsgVCCome;
  40. @property (nonatomic, strong) JXUserObject *user;
  41. @property (nonatomic, assign) BOOL isEdit;
  42. @property (nonatomic, strong) UIButton *delBtn;
  43. @property (nonatomic, strong) JXImageView *specialCareImageView;
  44. //存cell的badge用的dict
  45. //@property (nonatomic,strong) NSMutableDictionary * bageDict;
  46. //
  47. //- (void) saveBadge:(NSString*)badge withTitle:(NSString*)titl;
  48. - (void)setSuLabel:(NSString *)s;
  49. -(void)setForTimeLabel:(NSString *)s;
  50. //- (void)getHeadImage;
  51. //-(void)msgCellDataSet:(JXMsgAndUserObject *) msgObject indexPath:(NSIndexPath *)indexPath;
  52. //-(void)groupCellDataSet:(NSDictionary *)dataDict indexPath:(NSIndexPath *)indexPath;
  53. -(void)headImageViewImageWithUserId:(NSString *)userId roomId:(NSString *)roomIdStr;
  54. @end
  55. NS_ASSUME_NONNULL_END