YOUPAILCDynamicContentView.h 988 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YOUPAILCDynamicContentView.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/7.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCDynamicModel.h"
  10. @class YOUPAILCDynamicContentView;
  11. @protocol LCDynamicContentViewDelegate <NSObject>
  12. - (void)youpaifdeleteImage:(YOUPAILCDynamicModel*)model; //删除图片
  13. -(void)youpaifdidPlayVideo:(YOUPAILCDynamicModel*)model;//点击播放视频
  14. @end
  15. @interface YOUPAILCDynamicContentView : UIView
  16. @property(nonatomic,assign)CGFloat youpaipcontHeight;
  17. @property(nonatomic,strong)YOUPAILCDynamicModel* youpaipdyModel;
  18. @property(nonatomic,strong)UIButton* youpaipcontBtn;
  19. @property(nonatomic,strong)NSMutableArray* youpaipimgViewArray;
  20. - (instancetype)initWithModel:(YOUPAILCDynamicModel*)model;
  21. - (instancetype)initWithFrame:(CGRect)frame model:(YOUPAILCDynamicModel*)model;
  22. - (void)vqf_youpaifupdateTextHeight;
  23. @property(nonatomic,assign)id<LCDynamicContentViewDelegate> youpaipdelegate;
  24. @end