我想制作一个显示 UIImage 视图和 UIActivityIndictor 的初始屏幕,然后在应用程序完成加载后,它淡入一个新视图,我不知道如何使一个视图“淡入”(如溶解)到另一个视图而且我不确定如何“暂停”代码,直到它完成加载背景部分,有什么帮助吗?非常感谢!
问问题
111 次
2 回答
1
所以下面的代码显示了一个 1 秒的闪屏,然后它动画化了屏幕的溶解。
[UIView beginAnimations: @"Fade Out" context:nil];
// wait for time before begin, your splash screen shows for 1 second
[UIView setAnimationDelay:1.0];
// duration of animation, the splash screen dissolved in quarter of a second.
[UIView setAnimationDuration:0.25];
viewToDissolve.alpha = 0.0;
[UIView commitAnimations];
//animation complete, now show the main screen. you can use uinavigationviewcontroller or other methods.
于 2013-01-29T05:31:31.233 回答
0
转到项目属性,选择目标并将图像拖放到启动图像部分。
于 2013-01-29T05:11:45.553 回答