According to the iOS help library :
In iOS 4.0 and later, to mark individual resource files as you can only use for a certain type of device.
Does this mean that if you create a universal application for devices 3, X and, in particular, 3.2 iPad, you can not use the resources specific to the device using ~ipad and ~iphone sufixes?
If so, is this the case for device specific resources?
UIImage* anImage; if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { anImage = [UIImage imageNamed:@"MyImage-iPad.png"]; } else { anImage = [UIImage imageNamed:@"MyImage-iPhone.png"]; }
Any additional considerations I should be aware of?
ios iphone resources ipad universal-binary
hpique
source share