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

I have created an universal app and i run it in iphone 5 simulator i.e. iphone retina 4. All is working fine but a table view size is not appropriate.Actually, i have that table view completely above an image view. When i run in iphone retina 4, the image sets itself according to the retina 4 display but the table view height extends beyond that image view. I have set the table view size as 160 in the inspector window and when i print that in log, it says 248.0000. I am unable to figure out where the problem is. Please help me.

Thanks in advance.

share|improve this question

2 Answers

up vote 3 down vote accepted

Check for Auto Resizing

You can resize view by this.

And please uncheck 'Use Autolayout' Option. bcoz it'll restrict you with specific margins.

Hopefully it works.

share|improve this answer
I have tried this. setting the height of table view in retina 4 automatically changes height of that in retina 3.5 – hawkeye_01 Jan 10 at 7:28
Set Size of ViewController as 'Inferred' – iManan Jan 10 at 7:37
I have set the size of view controller as 'Inferred' and set the size of table view as 160. I run the project as retina 4 simulator, it still displays table view size as 248 and table view is extending beyond the background image view. – hawkeye_01 Jan 10 at 7:49
What do you want ? 160 fixed? Then remove two arrows between small rectangle. – iManan Jan 10 at 8:39
2  
okay.....done:) – hawkeye_01 Jan 22 at 9:58
show 3 more comments

you can first put Default-568h@2x.png and you need to check AutoLayout

from UITableView xib like:-

enter image description here

Select First File Inspector and check Use AutoLayout like :-

enter image description here

Hope its help's you

share|improve this answer
I have 3 table views in that view controller and I have scroll view for the whole screen to view all table views. Applying Autolayout to the top most table view restrict the whole scroll view to scroll. Doing this, i am unable to view 2nd n 3rd table views. – hawkeye_01 Jan 10 at 6:56

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.