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