STVideoCateCell.h 603 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // STVideoCateCell.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/12/3.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class STVideoCateCell;
  11. @protocol STVideoCateCellDelegate <NSObject>
  12. @optional
  13. //
  14. -(void)showSTVideoCateCell:(STVideoCateCell *)cell andChooseCateClick:(QMUIButton *)cateBtn;
  15. @end
  16. @interface STVideoCateCell : UITableViewCell
  17. @property(nonatomic, strong) QMUIButton *leftBtn;
  18. @property(nonatomic, strong) QMUIButton *cateBtn;
  19. @property (weak, nonatomic) id<STVideoCateCellDelegate> delegate;
  20. @end
  21. NS_ASSUME_NONNULL_END