Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I first updated Xcode and tested my app in the iPhone 5 simulator, the app ran perfectly with black borders at the top and bottom. Then, something popped up asking if I wanted Xcode to auto-resize the app so that it would fit the entire screen. I clicked yes, and now everything is messed up. Is there a way to get the borders back? I want to submit an update for my app as soon as possible. Thank you!

share|improve this question
have u used any local git or maintained the code on some repositories... – vishy Sep 20 '12 at 17:50
1  
no I have not . – felix_xiao Sep 20 '12 at 17:52

3 Answers

up vote 16 down vote accepted

Remove the file Default-568h@2x.png from your project.

share|improve this answer
Does Xcode add that file automatically? – BoltClock Sep 20 '12 at 17:52
I tried that, and it didn't work. I think xcode does it automatically but there must be a setting to prevent that from happening – felix_xiao Sep 20 '12 at 17:54
1  
The answer is definitely right. Make sure you do a Clean Build Folder. And maybe delete the app from the simulator and run again. – Obliquely Sep 20 '12 at 17:58
1  
If you go in the simulator and click reset content and settings, it fixes the problem – felix_xiao Sep 20 '12 at 18:02
@BoltClock: it asks you if you want Xcode to add it. If you don't, you'll get the black bars. If you do, the app will take up the entire screen without bars. – Scott Sep 20 '12 at 18:12
show 3 more comments

4 steps:

  • Uncheck the Target Membership of the Default-568h@2x.png file in the File Inspector pane (or just remove the file).
  • Do an (Option key) Clean Build Folder on the target, and a regular Clean as well.
  • Delete the app from the Simulator.
  • Rebuild the app and Run it.
share|improve this answer

A clean build folder can be tricky to find. Normaly you just see under Project > Clean . BUT when you keep your ALTkey pressed it will change into Clean Build Folder!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.