ZFNormalViewController.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // ZFNormalViewController.h
  3. // ZFPlayer
  4. //
  5. // Created by 紫枫 on 2018/3/21.
  6. // Copyright © 2018年 紫枫. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ZFNormalViewController : UIViewController
  10. @property(nonatomic,strong)NSMutableDictionary * playData;
  11. @property(nonatomic,assign)int vid;
  12. @end
  13. @interface playercell1 : UITableViewCell
  14. @property(nonatomic,assign)int imageCount;
  15. + (instancetype)cellWithTableView:(UITableView *)tableView;
  16. @property (nonatomic, strong) void(^tapBlock)(int index);
  17. @property(nonatomic,strong)NSDictionary * playData;
  18. @end
  19. @interface playercell2 : UITableViewCell
  20. @property(nonatomic,assign)int imageCount;
  21. + (instancetype)cellWithTableView:(UITableView *)tableView;
  22. @property (nonatomic, strong) void(^tapBlock)(int index);
  23. @property (nonatomic, strong) void(^changPlayBlock)(int index);
  24. @property(nonatomic,strong)NSDictionary * playData;
  25. @end
  26. @interface playItemCell : UICollectionViewCell
  27. @property(nonatomic,assign)NSInteger index;
  28. @property(nonatomic,assign)BOOL isSel;
  29. @end
  30. @interface playercell3 : UITableViewCell
  31. @property(nonatomic,assign)int imageCount;
  32. + (instancetype)cellWithTableView:(UITableView *)tableView;
  33. @property (nonatomic, strong) void(^tapBlock)(int index);
  34. @end
  35. @interface playercell4 : UITableViewCell
  36. @property(nonatomic,assign)int imageCount;
  37. + (instancetype)cellWithTableView:(UITableView *)tableView;
  38. @property (nonatomic, strong) void(^tapBlock)(int index);
  39. @property(nonatomic,strong)NSArray* reCommondMovies;
  40. @end