BogoSearchVideoListCell.h 641 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BogoSearchVideoListCell.h
  3. // BuguLive
  4. //
  5. // Created by Mac on 2021/9/27.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SmallVideoListModel;
  10. @class BogoSearchVideoListCell;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol BogoSearchVideoListCellDelegate <NSObject>
  13. - (void)videoListCell:(BogoSearchVideoListCell *)videoListCell didClickVideo:(SmallVideoListModel *)model;
  14. @end
  15. @interface BogoSearchVideoListCell : UITableViewCell
  16. @property(nonatomic, strong) NSArray <SmallVideoListModel *> *dataArray;
  17. @property(nonatomic, weak) id<BogoSearchVideoListCellDelegate>delegate;
  18. @end
  19. NS_ASSUME_NONNULL_END