单军华
2018-03-28 f99cf1d5cc50407394501853be06cb39f38a092c
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
//
//  AppDelegate.h
//  BaseProject
//
//  Created by WindShan on 2016/12/5.
//  Copyright © 2016年 WindShan. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import <BaiduMapAPI_Base/BMKBaseComponent.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate,BMKGeneralDelegate>
 
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) NSString *currentDevice;
 
@property (nonatomic, assign) BOOL     _bUpdateData; // 是否需要更新数据
 
@property (nonatomic, strong) BMKMapManager*     mapManager;
 
+ (AppDelegate *)AppInstance;
 
- (void)showHomePage;
- (void)showLoginPage;
-(void)getUserInfo;
-(void) sendControl:(NSString*)device controlkey:(NSString*)key floor:(NSString*)flr funIndex:(NSString*)fun;
@end