cocoaTouch/SDLOverrides/SDL_uikitappdelegate.m
changeset 2699 249adefa9c1c
parent 2698 90585aba87ad
child 2701 3a8560c00f78
equal deleted inserted replaced
2698:90585aba87ad 2699:249adefa9c1c
    89 	[window makeKeyAndVisible];
    89 	[window makeKeyAndVisible];
    90 
    90 
    91 	[UIView beginAnimations:@"inserting main controller" context:NULL];
    91 	[UIView beginAnimations:@"inserting main controller" context:NULL];
    92 	[UIView setAnimationDuration:1];
    92 	[UIView setAnimationDuration:1];
    93 	controller.view.alpha = 1;
    93 	controller.view.alpha = 1;
    94 	[UIView commitAnimations];	
    94 	[UIView commitAnimations];
    95 }
    95 }
    96 
    96 
    97 // override the direct execution of SDL_main to allow us to implement the frontend (even using a nib)
    97 // override the direct execution of SDL_main to allow us to implement the frontend (even using a nib)
    98 -(void) applicationDidFinishLaunching:(UIApplication *)application {
    98 -(void) applicationDidFinishLaunching:(UIApplication *)application {
    99 	[application setStatusBarHidden:YES animated:NO];
    99 	[application setStatusBarHidden:YES animated:NO];