123456789101112131415161718 |
- //
- // AppDelegate.h
- // Demo
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MTRootController.h"
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- @property (nonatomic, strong) MTRootController *rootTabbarVC; /**< 主vc */
- -(void)changeLabgue;
- @end
|