1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // AppDelegate.h
- // LN_School
- //
- // Created by apple on 2017/4/5.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <BaiduMapAPI_Base/BMKMapManager.h>
- //百度地图
- #define BAIDU_APPKEY @"sQ7eGiQTERhUmRqc0F5s5AUPgpPIwhXY"
- //个推
- #import "GTSDK/GeTuiSdk.h"
- // iOS10 及以上需导入 UserNotifications.framework
- #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
- #import <UserNotifications/UserNotifications.h>
- #endif
- // 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret
- #define kGtAppId @"ornGF9x9HYAlJzJOFBkP65"
- #define kGtAppKey @"yVOJ0XCzgV7EG91GSf01f7"
- #define kGtAppSecret @"FrTFDAPpV7AXA8HJ5YN183"
- //bugly
- #define BUGLY_APP_ID @"4ac82c226a"
- //客服
- #define CUSTOMERSERVICE_APPKEY @"909255a0-4f40-11e7-a416-f12e96c638e0"
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- /**是否已登录*/
- @property BOOL isLogin;
- //推送绑定clientID
- @property(nonatomic,copy)NSString *token;
- /**PureCamera 是否开启所有裁剪尺寸*/
- @property (nonatomic, assign) BOOL takePhotoAllRect;
- /**是否驾校管理员账号 (0系统管理员 1驾校管理员)Y (2驾校普通干活的)N*/
- @property BOOL isSchool;
- //初始化页面
- - (void)initHomeVC;
- @end
|