12345678910111213141516171819202122232425 |
- //
- // YOUPAILCVideoChatMessageCell.h
- // LiveChat
- //
- // Created by 张灿 on 2018/10/15.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCVideoChatMessageModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol LCVideoChatMessageCellDelegate <NSObject>
- - (void)youpaifcontentClicked:(YOUPAILCVideoChatMessageModel*)model;
- @end
- @interface YOUPAILCVideoChatMessageCell : UITableViewCell
- @property(nonatomic,weak)id<LCVideoChatMessageCellDelegate> youpaipdelegate;
- @property(nonatomic,strong)YOUPAILCVideoChatMessageModel* youpaipmsgModel;
- //@property (nonatomic,assign) CGFloat cellHeight;
- //+(CGFloat)youpaifcellHeightWithModel:(YOUPAILCVideoChatMessageModel*)model;
- @end
- NS_ASSUME_NONNULL_END
|