QMChatRoomBaseCell.h 972 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 <QMChatSDK/QMChatSDK-Swift.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