feat: 智念app iOS 第一次提交

This commit is contained in:
zoujing
2026-05-10 14:37:17 +08:00
commit ef4415bc12
196 changed files with 7196 additions and 0 deletions

View File

@@ -0,0 +1,166 @@
//
// 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
@interface AppDelegate()<PDRCoreDelegate>
@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];
UIWindow *window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window = window;
ViewController *viewController = [[ViewController alloc] init];
self.h5ViewContoller = viewController;
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
self.rootViewController = navigationController;
navigationController.navigationBarHidden = YES;
{
[self startMainApp];
self.h5ViewContoller.showLoadingView = YES;
}
self.window.rootViewController = navigationController;
[self.window makeKeyAndVisible];
return ret;
}
-(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];
});
}
- (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:
*/
- (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