ios fade out splash screen (iphone 5 friendly)
问题 I'm wanting to spoof the feel of the main splash screen fading out whenever applicationDidBecomeActive is called, but it's not working. What am I doing wrong? - (void)applicationDidBecomeActive:(UIApplication *)application { if(IS_IPHONE_5) splash = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Default-568h.png"]]; else splash = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Default.png"]]; [self.window.rootViewController.view addSubview:splash]; [UIView