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

For some reason, the UITableView cuts off when on an iPhone 5. Instead of seeing the table view on the entire screen, I just see a blue background. Basically, it's behaving like I'm using a 3.5" inch screen. The only time it does work is when I set the view to "Retina 4 Full Screen" in Simulated Metrics. But the problem with that is then I have the opposite problems with 3.5 inch screens. Here are a couple of pictures (the view is currently set to "Freeform" in Simulated Metrics):

enter image description here enter image description here

I have tried looking for similar questions, but none have helped. If it helps, I do have a MainWindow.xib. I am testing this using the iPhone 6.0 Simulator as well as an iPhone 4S 16GB. I will update this question if anything looks unclear. Any help is appreciated. Thank you.

share|improve this question

3 Answers

You probably don't have the proper autoresizing masks set. Try to set the mask to just UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight.

share|improve this answer
I'm not too sure where to put that. – Junior117 Dec 2 '12 at 13:30
@Junior117 In the size inspector (i.stack.imgur.com/SzPi5.png) click on the two double arrows so that they light up in a stronger red. – D_4_ni Dec 2 '12 at 19:43
worked for me, thanks – art-divin yesterday

Try one of these and see if they help:

myTableView.view.frame = self.view.bounds;
// or
myTableView.view.frame = self.view.frame;
share|improve this answer
In what file do I put that and where? – Junior117 Dec 2 '12 at 13:29

You need to resize your table, add one property autoresizingMask.

self.tableView.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleHeight ;

One more thing you are adding tableView inside mainView(self.view) or any subView. You may have this problem.

Check Your mainView's bound and frame.

Hope this will help you.

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.