我终于想出了如何淡出启动画面,但在这样做之前它会将其缩小到 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;
}