//
|
// 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
|