AppDelegate.m
8.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
//
// AppDelegate.m
// Pandora
//
// Created by Mac Pro_C on 12-12-26.
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//
#import "AppDelegate.h"
#import "PDRCore.h"
#import "PDRCommonString.h"
#import "ViewController.h"
#import "PDRCoreApp.h"
#import "PDRCoreAppManager.h"
#define ENABLEAD
#if defined(ENABLEAD)
#import "DCADManager.h"
#endif
@interface AppDelegate()<PDRCoreDelegate
#if defined(ENABLEAD)
,DCADManagerDelgate
#endif
>
@property (strong, nonatomic) ViewController *h5ViewContoller;
@end
@implementation AppDelegate
@synthesize window = _window;
@synthesize rootViewController;
#pragma mark -
#pragma mark app lifecycle
/*
* @Summary:程序启动时收到push消息
*/
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
BOOL ret = [PDRCore initEngineWihtOptions:launchOptions
withRunMode:PDRCoreRunModeNormal withDelegate:self];
UIViewController* adViewController = nil;
#if defined(ENABLEAD)
DCADManager *adManager = [DCADManager adManager];
adManager.delegate = self;
adViewController = [adManager getADViewController];
#endif
UIWindow *window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window = window;
HHSDKOptions * options = [[HHSDKOptions alloc] initWithProductId:@"3001" isDebug:YES isDevelop:YES];
[HHMSDK.default_ startWithOption:options];
ViewController *viewController = [[ViewController alloc] init];
self.h5ViewContoller = viewController;
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
self.rootViewController = navigationController;
navigationController.navigationBarHidden = YES;
if ( adViewController ) {
[navigationController pushViewController:adViewController animated:NO];
} else {
[self startMainApp];
self.h5ViewContoller.showLoadingView = YES;
}
self.window.rootViewController = navigationController;
[self.window makeKeyAndVisible];
return ret;
}
#pragma mark - core delegate
- (BOOL)interruptCloseSplash {
#if defined(ENABLEAD)
return [[DCADManager adManager] interruptCloseSplash];//self.isAdInterruptCloseLoadingPage;
#endif
return NO;
}
#if defined(ENABLEAD)
- (void)settingLoadEnd {
[DCADManager adManager];
}
#endif
-(BOOL)getStatusBarHidden {
return [self.h5ViewContoller getStatusBarHidden];
}
-(UIStatusBarStyle)getStatusBarStyle {
return [self.h5ViewContoller getStatusBarStyle];
}
-(void)setStatusBarStyle:(UIStatusBarStyle)statusBarStyle {
[self.h5ViewContoller setStatusBarStyle:statusBarStyle];
}
-(void)wantsFullScreen:(BOOL)fullScreen
{
[self.h5ViewContoller wantsFullScreen:fullScreen];
}
#pragma mark -
- (void)startMainApp {
dispatch_async(dispatch_get_main_queue(), ^(void) {
[[PDRCore Instance] start];
});
}
#if defined(ENABLEAD)
- (void)adManager:(DCADManager*)adManager dispalyADViewController:(UIViewController*)viewController {
[self.rootViewController pushViewController:viewController animated:NO];
}
- (void)adManager:(DCADManager*)adManager needCloseADViewController:(UIViewController*)viewController {
self.h5ViewContoller.showLoadingView = NO;
[self.rootViewController popToRootViewControllerAnimated:NO];
}
- (void)adManager:(DCADManager*)adManager adIsShow:(DCADLaunch*)ad {
[self startMainApp];
}
#endif
- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem
completionHandler:(void(^)(BOOL succeeded))completionHandler{
[PDRCore handleSysEvent:PDRCoreSysEventPeekQuickAction withObject:shortcutItem];
completionHandler(true);
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
[PDRCore handleSysEvent:PDRCoreSysEventBecomeActive withObject:nil];
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillResignActive:(UIApplication *)application
{
[PDRCore handleSysEvent:PDRCoreSysEventResignActive withObject:nil];
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
[PDRCore handleSysEvent:PDRCoreSysEventEnterBackground withObject:nil];
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
[PDRCore handleSysEvent:PDRCoreSysEventEnterForeGround withObject:nil];
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
[PDRCore destoryEngine];
}
#pragma mark -
#pragma mark URL
- (BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication
annotation:(id)annotation {
[self application:application handleOpenURL:url];
return YES;
}
/*
* @Summary:程序被第三方调用,传入参数启动
*
*/
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
{
[PDRCore handleSysEvent:PDRCoreSysEventOpenURL withObject:url];
return YES;
}
- (BOOL)application:(UIApplication *)application openURL:(nonnull NSURL *)url options:(nonnull NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
[PDRCore handleSysEvent:PDRCoreSysEventOpenURLWithOptions withObject:@[url,options]];
return YES;
}
/*
* @Summary:远程push注册成功收到DeviceToken回调
*
*/
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
NSLog(@"application--didRegisterForRemoteNotificationsWithDeviceToken[%@]", deviceToken);
[PDRCore handleSysEvent:PDRCoreSysEventRevDeviceToken withObject:deviceToken];
}
/*
* @Summary: 远程push注册失败
*/
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
{
[PDRCore handleSysEvent:PDRCoreSysEventRegRemoteNotificationsError withObject:error];
}
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
[PDRCore handleSysEvent:PDRCoreSysEventRevRemoteNotification withObject:userInfo];
}
- (void)application:(UIApplication *)application
didReceiveRemoteNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler {
[self application:application didReceiveRemoteNotification:userInfo];
completionHandler(UIBackgroundFetchResultNewData);
}
/*
* @Summary:程序收到本地消息
*/
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
[PDRCore handleSysEvent:PDRCoreSysEventRevLocalNotification withObject:notification];
}
/*
* @Summary:通用链接
*/
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void(^)(NSArray<id<UIUserActivityRestoring>> * __nullable restorableObjects))restorationHandler {
[PDRCore handleSysEvent:PDRCoreSysEventContinueUserActivity withObject:userActivity];
restorationHandler(nil);
return YES;
}
@end
@implementation UINavigationController(Orient)
-(BOOL)shouldAutorotate{
return ![PDRCore Instance].lockScreen;
return YES;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
if([self.topViewController isKindOfClass:[ViewController class]])
return [self.topViewController supportedInterfaceOrientations];
return UIInterfaceOrientationMaskPortrait;
}
@end