STTableShowVideoCell.h 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // STTableShowVideoCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/19.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. #import <QMUIKit/QMUIKit.h>
  11. @class STTableShowVideoCell;
  12. @protocol STTableShowVideoCellDelegate <NSObject>
  13. @optional
  14. -(void)videoCell:(STTableShowVideoCell *)videoCell didChangeText:(NSString *)text;
  15. -(void)showSystemIPC:(BOOL)isSystemIPC andMaxSelectNum:(int)maxSelectNum;
  16. //修改视频封面
  17. -(void)showSTTableShowVideoCell:(STTableShowVideoCell *)stTableShowVideoCell andChangeVideoCoverClick:(UIButton *)changeVideoCoverClick;
  18. @end
  19. @interface STTableShowVideoCell : STTableBaseCell
  20. @property (weak, nonatomic) IBOutlet UIImageView *bgImgView;
  21. @property (weak, nonatomic) IBOutlet UIImageView *videoCoverImgView;
  22. @property (weak, nonatomic) IBOutlet UIButton *changeCoverBtn;
  23. @property (weak, nonatomic) IBOutlet UILabel *promptLab;
  24. @property (weak, nonatomic) IBOutlet UIImageView *changeVideoIconImgeView;
  25. @property (weak, nonatomic) IBOutlet UILabel *changeVideoLab;
  26. @property (weak, nonatomic) IBOutlet UIButton *changeVideoBtn;
  27. @property (weak, nonatomic) IBOutlet UIView *separatorView;
  28. @property (weak, nonatomic) id<STTableShowVideoCellDelegate> delegate;
  29. @property (weak, nonatomic) IBOutlet QMUITextView *textView;
  30. @end