QMChatRoomBaseCell.h 968 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // QMChatRoomBaseCell.h
  3. // IMSDK-OC
  4. //
  5. // Created by HCF on 16/3/10.
  6. // Copyright © 2016年 HCF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <QMLineSDK/QMLineSDK.h>
  10. @interface QMChatRoomBaseCell : UITableViewCell
  11. @property (nonatomic, strong) UIImageView *iconImage; // 头像
  12. @property (nonatomic, strong) UILabel *timeLabel; // 时间
  13. @property (nonatomic, strong) UIImageView *chatBackgroudImage; // 气泡
  14. @property (nonatomic, strong) UIImageView *sendStatus; // 消息发送状态
  15. @property (nonatomic, strong) CustomMessage *message;
  16. @property (nonatomic, copy) void(^tapSendMessage)(NSString *);
  17. @property (nonatomic, copy) void(^didBtnAction)(BOOL);
  18. @property (nonatomic, copy) void(^tapNetAddress)(NSString *);
  19. - (void)setData:(CustomMessage *)message avater:(NSString *)avater;
  20. //+ (CGFloat)setHeightWithData: (CustomMessage *)message;
  21. - (void)longPressTapGesture: (id)sender;
  22. - (void)setProgress: (float)progress;
  23. @end