VideoDownLoadListVC.h 607 B

123456789101112131415161718192021222324
  1. //
  2. // VideoDownLoadListVC.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2018/10/22.
  6. // Copyright © 2018 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "VideoDownLoadListCell.h"
  10. typedef NS_ENUM(NSInteger, VideoListSegControlIndex) {
  11. VideoListSegControlIndex_ObjectOne = 0,
  12. VideoListSegControlIndex_ObjectTwo = 1,
  13. VideoListSegControlIndex_ObjectThree = 2,
  14. VideoListSegControlIndex_ObjectFour = 3,
  15. };
  16. @interface VideoDownLoadListVC : UIViewController
  17. @property (weak, nonatomic) UITableView *tableView;
  18. @property (nonatomic, assign) VideoListSegControlIndex videoListSegControlIndex;
  19. @end