JXCell.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. //
  2. // JXCell.h
  3. //
  4. // Created by flyeagleTang on 14-4-3.
  5. // Copyright (c) 2014年 Reese. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "JXBadgeView.h"
  9. @interface JXCell : UITableViewCell{
  10. }
  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* guanFLbTitle;
  28. @property (nonatomic,strong) JXLabel* lbBottomTitle;
  29. @property (nonatomic,strong) JXLabel* lbSubTitle;
  30. @property (nonatomic,strong) JXLabel* timeLabel;
  31. @property (strong, nonatomic) UILabel * positionLabel;
  32. @property (nonatomic, strong) JXBadgeView* bageNumber;
  33. @property (nonatomic,strong) JXImageView * notPushImageView;
  34. @property (nonatomic,strong) UIImageView * chujiIMG;
  35. @property (nonatomic,strong) UILabel * tempChatL; //临时会话
  36. @property (nonatomic,strong) JXImageView * replayView;
  37. @property (nonatomic, strong) UIImageView *replayImgV;
  38. @property (nonatomic, strong) id dataObj;
  39. @property (nonatomic, strong) UIView *lineView;
  40. @property (nonatomic, assign) BOOL isSmall;
  41. @property (nonatomic, assign) BOOL isNotPush;
  42. @property (nonatomic, assign) BOOL isMsgVCCome;
  43. @property (nonatomic, strong) JXUserObject *user;
  44. @property (nonatomic, assign) BOOL isEdit;
  45. @property (nonatomic, strong) UIButton *delBtn;
  46. @property (nonatomic, strong) JXImageView *specialCareImageView;
  47. @property (nonatomic, assign) BOOL isShowNicknameRemarkNameTelphoneNumber;
  48. //存cell的badge用的dict
  49. //@property (nonatomic,strong) NSMutableDictionary * bageDict;
  50. //
  51. //- (void) saveBadge:(NSString*)badge withTitle:(NSString*)titl;
  52. - (void)setSuLabel:(NSString *)s;
  53. -(void)setForTimeLabel:(NSString *)s;
  54. //- (void)getHeadImage;
  55. //-(void)msgCellDataSet:(JXMsgAndUserObject *) msgObject indexPath:(NSIndexPath *)indexPath;
  56. //-(void)groupCellDataSet:(NSDictionary *)dataDict indexPath:(NSIndexPath *)indexPath;
  57. -(void)headImageViewImageWithUserId:(NSString *)userId roomId:(NSString *)roomIdStr;
  58. @end