123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // 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 @"7loyW3lFxRqx3YsSNBKcpNhIAVDkVGad"
- //个推
- #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 @"Xw6Vqfc68kAK4UrwpViub5"
- #define kGtAppKey @"0MbksyvkYf7w53Y8U6Ss66"
- #define kGtAppSecret @"ur2ZTaJuyx6RhKbcfHtb84"
- //客服
- #define CUSTOMERSERVICE_APPKEY @"74442d40-9dc6-11e7-957d-a30a08c3a2c0"
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- /**是否已登录
- */
- @property BOOL isLogin;
- //推送绑定clientID
- @property(nonatomic,copy)NSString *token;
- //初始化页面
- - (void)initHomeVC;
- @end
|