0
votes
1answer
61 views

iPhone 5 dimensions suddenly supported?

I have no idea if it was something I did, or some update. But I've been programming an app that used the dimensions of pre-iPhone 5 devices, and the other day I noticed that my app started utilizing ...
2
votes
1answer
159 views

iPhone 5 app won't launch with full resolution despite Default-568h@2x.png

I have done this: How to develop or migrate apps for iPhone 5 screen resolution? i.e. added the Default-568h@2x.png file. My app still launches with the black bars top and bottom. It launches with ...
1
vote
2answers
517 views

IPhone 5 optimize old xib

This is my problem: I need instructions on how to fix the 3.5 inch xib for the 4 inch screen. I have already loaded the Default-568 img so I no longer have the letterbox layout. I have the ...
1
vote
3answers
4k views

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 ...
0
votes
1answer
611 views

Trying to add a new background in iPhone 5 4" storyboard

I am trying to add a correct sized background image to support iPhone5 4" screen but i am still getting the same letterbox in the bottom. The image is correct sized image. The code i use: if ...
3
votes
3answers
404 views

How to make an iPhone app and exclude iPhone 5?

I'm looking at the iPhone 5 specs, and see that the screen resolution is 640x1132 or so, which would break some of my manual+storyboard interface layouts. I'm wandering how to make an app so it would ...
0
votes
2answers
1k views

Making use of the extra pixels on 1136x640 iPhone 5 Screen?

Without the 1136 launch image, apps now run in letterbox mode with black bars on either end. If you add the Default-568h@2x.png launch image, then the app runs with 1136 pixels (in my case, in ...
1
vote
1answer
169 views

How to tackle with varied screen sizes in iphone [duplicate]

Possible Duplicate: How to deal with iPhone 5 screen size? iphone 5 has a different screen size and the others have different screen size. How do i program to make my app reliable for both ...
9
votes
1answer
3k views

Undo auto resizing for iPhone 5 screen after adding Default-568h@2x.png

I followed the instructions in this answer: http://stackoverflow.com/a/12397309/1084932 to update my app for the new iPhone 5 screen size. Great, worked perfectly! But, I am not quite ready to make ...
0
votes
1answer
145 views

Run an iOS6 App on New iPad

Im creating an App for iPhone5 and it runs good in iPhone 6.0 simulator (with 4-inch display). Now i wanna test it on my New iPad, which has been upgrade to iOS6, but the screen is automatically ...
42
votes
0answers
9k views

iPhone 5 letterboxing / screen resize [closed]

Because I think a lot of people will be asking this question (because I was)... Now that the latest version of XCode allows us to test our programs on a iPhone 5 simulator, you may have noticed that ...
269
votes
19answers
86k views

How to develop or migrate apps for iPhone 5 screen resolution?

The new iPhone 5 display has a new aspect ratio and a new resolution (1136 x 640 pixels). What is required to develop new or transition already existing applications to the new screen size? What ...