YOUPAILCVideoChatMessageCell.h 735 B

12345678910111213141516171819202122232425
  1. //
  2. // YOUPAILCVideoChatMessageCell.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/10/15.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCVideoChatMessageModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol LCVideoChatMessageCellDelegate <NSObject>
  12. - (void)youpaifcontentClicked:(YOUPAILCVideoChatMessageModel*)model;
  13. @end
  14. @interface YOUPAILCVideoChatMessageCell : UITableViewCell
  15. @property(nonatomic,weak)id<LCVideoChatMessageCellDelegate> youpaipdelegate;
  16. @property(nonatomic,strong)YOUPAILCVideoChatMessageModel* youpaipmsgModel;
  17. //@property (nonatomic,assign) CGFloat cellHeight;
  18. //+(CGFloat)youpaifcellHeightWithModel:(YOUPAILCVideoChatMessageModel*)model;
  19. @end
  20. NS_ASSUME_NONNULL_END