mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #14355 from volzhs/ios-delegate
use application:didFinishLaunchingWithOptions: instead of application…
This commit is contained in:
commit
78364d4b07
1 changed files with 2 additions and 1 deletions
|
|
@ -568,7 +568,7 @@ static int frame_count = 0;
|
|||
MainLoop::NOTIFICATION_OS_MEMORY_WARNING);
|
||||
};
|
||||
|
||||
- (void)applicationDidFinishLaunching:(UIApplication *)application {
|
||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||||
|
||||
printf("**************** app delegate init\n");
|
||||
CGRect rect = [[UIScreen mainScreen] bounds];
|
||||
|
|
@ -665,6 +665,7 @@ static int frame_count = 0;
|
|||
isAdvertisingTrackingEnabled]];
|
||||
|
||||
#endif
|
||||
return TRUE;
|
||||
};
|
||||
|
||||
- (void)applicationWillTerminate:(UIApplication *)application {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue