For now, the only method i've found is to handle manually in code the LaunchImage.png:
self.splashImage.contentMode = UIViewContentModeScaleAspectFit;
if (IS_IPHONE())
{
if (!IS_RETINA)
{
self.splashImage.image = [UIImage imageNamed:@"LaunchImage.png"];
}
else
{
if (IS_PHONEPOD5())
{
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-568h@2x.png"];
}
else
{
self.splashImage.image = [UIImage imageNamed:@"LaunchImage@2x.png"];
}
}
}
else if (IS_IPAD())
{
if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait)
{
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
if (!IS_RETINA)
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-700-Portrait~ipad"];
else
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-700-Portrait@2x~ipad"];
}
else
{
if (!IS_RETINA)
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-Portrait~ipad"];
else
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-Portrait@2x~ipad"];
}
}
else // landscape
{
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
if (!IS_RETINA)
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-700-Landscape~ipad"];
else
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-700-Landscape@2x~ipad.png"];
}
else
{
if (!IS_RETINA)
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-Landscape~ipad"];
else
self.splashImage.image = [UIImage imageNamed:@"LaunchImage-Landscape@2x~ipad"];
}
}
}
where IS_IPHONE, IS_RETINA, etc. are macro defined as:
#define IS_PHONEPOD5() ([UIScreen mainScreen].bounds.size.height == 568.0f && [UIScreen mainScreen].scale == 2.f && UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
#define IS_RETINA ([[UIScreen mainScreen] respondsToSelector:@selector(displayLinkWithTarget:selector:)] && ([UIScreen mainScreen].scale == 2.0))
#define IS_IPHONE() (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
#define IS_IPAD() (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)