AppDelegate.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // AppDelegate.h
  3. // LN_School
  4. //
  5. // Created by apple on 2017/4/5.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <BaiduMapAPI_Base/BMKMapManager.h>
  10. //百度地图
  11. #define BAIDU_APPKEY @"7loyW3lFxRqx3YsSNBKcpNhIAVDkVGad"
  12. //个推
  13. #import "GTSDK/GeTuiSdk.h"
  14. // iOS10 及以上需导入 UserNotifications.framework
  15. #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
  16. #import <UserNotifications/UserNotifications.h>
  17. #endif
  18. // 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret
  19. #define kGtAppId @"Xw6Vqfc68kAK4UrwpViub5"
  20. #define kGtAppKey @"0MbksyvkYf7w53Y8U6Ss66"
  21. #define kGtAppSecret @"ur2ZTaJuyx6RhKbcfHtb84"
  22. //客服
  23. #define CUSTOMERSERVICE_APPKEY @"74442d40-9dc6-11e7-957d-a30a08c3a2c0"
  24. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  25. @property (strong, nonatomic) UIWindow *window;
  26. /**是否已登录
  27. */
  28. @property BOOL isLogin;
  29. //推送绑定clientID
  30. @property(nonatomic,copy)NSString *token;
  31. //初始化页面
  32. - (void)initHomeVC;
  33. @end