スプラッシュ画面をフェードアウトする方法をようやく理解しましたが、その直前に640x920に縮小されます。ビデオは次のとおりです: http ://www.youtube.com/watch?v = qUXrq-uHlVk
誰かがこれを修正する方法を知っていますか?これが私が使用しているコードです:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIImageView *splash = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Default.png"]];
[self.window.rootViewController.view addSubview:splash];
[UIView animateWithDuration:1.0
animations:^{
splash.alpha = 0;
}
completion:^(BOOL finished) {
[splash removeFromSuperview];
}];
return YES;
}