I have upgraded my current target to iPad and made a universal app and the time for adjusting my iphone app to ipad would decrease significantly if there is an answer for th
I don't think there's a way to get the OS to pick it automatically for you, like there is for the Retina display. But, you could create a convenience method to return your filenames for you like:
-(NSString*) myImageFilename:(NSString*)baseName withExtension:(NSString*)ext {
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
return [NSString stringWithFormat:"%@@iPadSize.%@"];
} else {
return [NSString stringWithFormat:"%@.%@"];
}
}