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