How to integrate splash screen for all types of iPhones in Xcode 6.1?

In Xcode6 for all devices splash screen you need to make splash image for each device size retina and non retina. Best way of done this thng use asset Catalog from target–>general like following screenshot: when you tap the right small arrow near of launchImage (->) you can see the following window: Currently there is … Read more

iOS 7 launch image (splash screen) fades out

I have managed to do that in the AppController. Just place this code right after the creation of the glView UIImage* image = [UIImage imageNamed:[self getLaunchImageName]]; if ([[UIScreen mainScreen] respondsToSelector: @selector(scale)]) { float screenScale = [[UIScreen mainScreen] scale]; if (screenScale > 1.) image = [UIImage imageWithCGImage:image.CGImage scale:screenScale orientation:image.imageOrientation]; } UIImageView *splashView = [[UIImageView alloc] initWithImage:image]; … Read more

tech