AppDelegate.h 809 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // AppDelegate.h
  3. // IBOSS
  4. //
  5. // Created by iHope on 14-6-5.
  6. // Copyright (c) 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MainTabVC.h"
  10. // 引入JPush功能所需头文件
  11. #import "JPUSHService.h"
  12. // iOS10注册APNs所需头文件
  13. #ifdef NSFoundationVersionNumber_iOS_9_x_Max
  14. #import <UserNotifications/UserNotifications.h>
  15. #endif
  16. @interface AppDelegate : UIResponder <UIApplicationDelegate,JPUSHRegisterDelegate>
  17. /**
  18. UIWindow对象
  19. */
  20. @property (strong,nonatomic) UIWindow *window;
  21. /**
  22. MainTabVC对象
  23. */
  24. @property (strong,nonatomic) IBOutlet MainTabVC *mainTabVC;
  25. /**
  26. jpush通知dic
  27. */
  28. @property (strong,nonatomic) NSDictionary *pushDic;
  29. /**
  30. 登录
  31. */
  32. - (void)changeViewDidLogin;
  33. /**
  34. 退出
  35. */
  36. - (void)changeViewDidLogout;
  37. @end