123456789101112131415161718192021222324 |
- //
- // VideoDownLoadListVC.h
- // jiaPei
- //
- // Created by 张嵘 on 2018/10/22.
- // Copyright © 2018 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "VideoDownLoadListCell.h"
- typedef NS_ENUM(NSInteger, VideoListSegControlIndex) {
- VideoListSegControlIndex_ObjectOne = 0,
- VideoListSegControlIndex_ObjectTwo = 1,
- VideoListSegControlIndex_ObjectThree = 2,
- VideoListSegControlIndex_ObjectFour = 3,
- };
- @interface VideoDownLoadListVC : UIViewController
- @property (weak, nonatomic) UITableView *tableView;
- @property (nonatomic, assign) VideoListSegControlIndex videoListSegControlIndex;
- @end
|