// // AppDelegate.h // XYSW // // Created by Jim on 2021/9/7. // #import <UIKit/UIKit.h> #import <ZXNavigationBarNavigationController.h> typedef NS_ENUM(NSInteger,NetWorkStatus) { NetWorkStatusNotReachability, NetWorkStatusReachability, }; @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (nonatomic) NetWorkStatus networkStatus; @property (strong, nonatomic) UIWindow *window; @property (nonatomic, strong) ZXNavigationBarNavigationController *navigationCtrl; + (AppDelegate *)shareAppDelegate; +(void)startLoginViewController; +(void)startMainViewController; +(void)startTestViewController; @end