Restore pre-iOS7 UINavigationController pushViewController animation

前端 未结 10 2316
终归单人心
终归单人心 2020-11-30 21:14

So. Just started transitioning my IOS code to IOS7, and ran into a bit of problem.

I\'ve got a UINavigationController, which has child ViewControllers a

10条回答
  •  一整个雨季
    2020-11-30 22:16

    Simply add in:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    

    This:

    [[self window] setBackgroundColor:[UIColor whiteColor]];
    

    The final result:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions (NSDictionary *)launchOptions {    
        [[self window] setBackgroundColor:[UIColor whiteColor]];
    
        // Override point for customization after application launch.
        return YES;
    }
    

提交回复
热议问题