BogoVideoPlayViewController.h 552 B

12345678910111213141516171819202122
  1. //
  2. // BogoVideoPlayViewController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/4/20.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //#import <SJVideoPlayer/SJVideoPlayer.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoVideoPlayViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
  12. @property (nonatomic, strong, readonly) UITableView *tableView;
  13. //@property (nonatomic, strong, nullable) SJVideoPlayer *player;
  14. -(instancetype)initWithModelArr:(NSMutableArray *)arr;
  15. @end
  16. NS_ASSUME_NONNULL_END