123456789101112131415161718192021222324252627282930 |
- //
- // YOUPAILCDynamicContentView.h
- // LiveChat
- //
- // Created by 张灿 on 2018/9/7.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCDynamicModel.h"
- @class YOUPAILCDynamicContentView;
- @protocol LCDynamicContentViewDelegate <NSObject>
- - (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<LCDynamicContentViewDelegate> youpaipdelegate;
- @end
|