// // YOUPAILCDynamicContentView.h // LiveChat // // Created by 张灿 on 2018/9/7. // Copyright © 2018年 caicai. All rights reserved. // #import #import "YOUPAILCDynamicModel.h" @class YOUPAILCDynamicContentView; @protocol LCDynamicContentViewDelegate - (void)youpaifdeleteImage:(YOUPAILCDynamicModel*)model; //删除图片 -(void)youpaifdidPlayVideo:(YOUPAILCDynamicModel*)model;//点击播放视频 @end @interface YOUPAILCDynamicContentView : UIView @property(nonatomic,assign)CGFloat youpaipcontHeight; @property(nonatomic,strong)YOUPAILCDynamicModel* youpaipdyModel; @property(nonatomic,strong)UIButton* youpaipcontBtn; @property(nonatomic,strong)NSMutableArray* youpaipimgViewArray; - (instancetype)initWithModel:(YOUPAILCDynamicModel*)model; - (instancetype)initWithFrame:(CGRect)frame model:(YOUPAILCDynamicModel*)model; - (void)vqf_youpaifupdateTextHeight; @property(nonatomic,assign)id youpaipdelegate; @end