如何更改点击应用徽标后显示的图像时间?

时间:2011-03-17 09:31:23

标签: iphone uiview uiimage

每当我们点击Iphone应用程序时......

图像出现暂停一段时间......

之后就消失了......

和真正的窗口..我的意思是我们编程的屏幕出现..

现在我希望Image停留一段时间..

怎么做?

1 个答案:

答案 0 :(得分:0)

您正在谈论的图像是启动画面,它会一直显示,直到操作系统加载您的应用程序的资源并启动它,它的默认名称就是它的图像文件是Default.png。如果您希望将其显示为abit更长时间,则需要创建带有图像的图像视图,将其放在屏幕上,并在一段时间后将其删除,可能是在applicationDidFinishLaunching方法中。

之类的东西
UIImageView *imageViewSplash = [[[UIImageView alloc] initWithFrame:window.frame] autorelease]; 
imageViewSplash.image = [UIImage imageNamed:@"Default.png"];
[self.viewController.view addSubview:imageViewSplash];
[imageViewSplash performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:2]; 
// change the '2' to some constants that represents for how many extra seconds you want the splash screen to be displayed