Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS6 iPhone 5 nothing clickable at bottom of screen

I have an app I am trying to convert and make ready for the new iPhone 5 screen size. I added the new Default-568h@2x image and I set my views to autosize in IB. The views look right, they stretch to fill the screen, but any button I put at the bottom is unclickable. It's like there is an invisible line towards the bottom, about where the old iPhone screen would stop, and anything below that line is unclickable. If I put the button right on this line, the top part is clickable but the bottom part is not.

like image 766
user1689158 Avatar asked Sep 21 '12 14:09

user1689158


2 Answers

I had the same problem... http://anthonyprato.com/2012/09/20/iphone-5-problem-with-touches-at-the-bottom-of-the-screen/

Your UIWindow created in a nib needs "Full Screen at Launch" checked.

like image 107
Anthony Avatar answered Oct 26 '22 08:10

Anthony


If you don't have MainWindow.xib in your project (and most newer projects don't), then you need one extra line in the applicationDidFinishLaunching of your app delegate:

- (void)applicationDidFinishLaunching:(UIApplication *)application {

    [window setFrame:[[UIScreen mainScreen] bounds]];
    ...
}

I put it in the beginning of the method. Worked like a charm.

like image 45
Aleks G Avatar answered Oct 26 '22 09:10

Aleks G