iphone - how to change the time of the image that appear after clicking app logo? -


Every time we click on the iPhone app ...

An image that appears stays up late.

And then it disappeared ...

And the actual window .. I mean our program screen appears ..

Now I This image should be

How to do this The image you are talking about is a splash screen, Unless the OS loads your app's resources and launches it, the default name of the image file in the bundle is Default.png if you want it to be so far You need to create an image view with the image, it will be inserted on the screen, and will remove it after some time, possibly in the application such as some of the Finishing Launching Methods

  UIImageView * imageViewSplash = [[[UIImageView alloc] initWithFrame: window.frame] Autorelage]; ImageViewSplash.image = [UIImage imageNamed: @ "Default.png"]; [Self.viewController.view addSubview: imageViewSplash]; [ImageViewSplash performSelector: @selector (removeFromSuperview) withObject: after zero: two]; // changes the '2' for some constants that shows how many extra seconds that you want to display the splash screen    

Comments