1234567891011121314151617181920212223242526272829303132 |
- /**这就是首页VC的base
- 用于控制科目1,科目2,科目3,科目4等。这些东西应该是放在导航栏上。
-
- 然后交给HomeView去显示。
-
-
- 这里先把题库给更新了。还有计时。
- */
- #import <UIKit/UIKit.h>
- #import "YRSideViewController.h"
- typedef enum : NSUInteger {
- LocalNotificationTypeTheory = 0, /// 课堂
- LocalNotificationTypSsimulation, /// 模拟
- } LocalNotificationType;
- @interface HomeBaseVC : UIViewController
- @property(nonatomic, strong) YRSideViewController *sideVC;
- @property(nonatomic, strong) NSMutableArray *viewControllers;
- //表示是否是要上传位置信息 如果上传为yes
- @property(nonatomic, copy) NSString *isUploadGPS;
- @property(nonatomic, assign) LocalNotificationType localNotificationType;
- @end
|