重庆迈尖科技有限公司
2018-08-20 b8c74010cb15ca3145f06dba2d9ed4fcb1d0a8bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  AppDelegate.h
//  MIduo
//
//  Created by apple on 17/2/20.
//  Copyright © 2017年 yeshi. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface MPAppDelegate : UIResponder<
//UNUserNotificationCenterDelegate,      // <-- iOS10+
UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
 
@end
@interface AppDelegate : UIResponder <UIApplicationDelegate>
 
@property (strong, nonatomic) UIWindow *window;
 
@property (nonatomic) BOOL isLaunch;
 
/*
 当前的网络状态
 */
@property(nonatomic,assign)int netWorkStatesCode;
 
@end