| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // AppDelegate.h
- // IBOSS
- //
- // Created by iHope on 14-6-5.
- // Copyright (c) 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MainTabVC.h"
- // 引入JPush功能所需头文件
- #import "JPUSHService.h"
- // iOS10注册APNs所需头文件
- #ifdef NSFoundationVersionNumber_iOS_9_x_Max
- #import <UserNotifications/UserNotifications.h>
- #endif
- @interface AppDelegate : UIResponder <UIApplicationDelegate,JPUSHRegisterDelegate>
- /**
- UIWindow对象
- */
- @property (strong,nonatomic) UIWindow *window;
- /**
- MainTabVC对象
- */
- @property (strong,nonatomic) IBOutlet MainTabVC *mainTabVC;
- /**
- jpush通知dic
- */
- @property (strong,nonatomic) NSDictionary *pushDic;
- /**
- 登录
- */
- - (void)changeViewDidLogin;
- /**
- 退出
- */
- - (void)changeViewDidLogout;
- @end
|