Newer
Older
XinYang_IOS / AppDelegate.h
@zhangfeng zhangfeng on 7 Dec 546 bytes 1.8.0
//
//  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