Xcode 4.5 background image iPhone 4, 4s, 5
I have in my viewController.m written the background code: self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]]; And I have the correct names of the different pictures: image.png for non-retina display (320x480) image@2x.png for retina display (640x960) image-568h@2x.png for iPhone 5 (640x1136) But when I run it in the simulator it does not take the image-568h@2x.png for iPhone 5 screen it only takes the image@2x for 4s screen and scale it to fit the screen... I dont know if there is any coding to use the image-568h@2x for iPhone 5 screen? Im using