AppDelegate.h 389 B

123456789101112131415161718
  1. //
  2. // AppDelegate.h
  3. // Demo
  4. //
  5. // Created by Simon on 2019/3/22.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MTRootController.h"
  10. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  11. @property (strong, nonatomic) UIWindow *window;
  12. @property (nonatomic, strong) MTRootController *rootTabbarVC; /**< 主vc */
  13. -(void)changeLabgue;
  14. @end