rolivares
rolivares

Reputation: 137

UITableView height different between XCode and the real display (simulator and device) using monotouch

I've created an UIView and modified with XCode :

enter image description here

But the resultant display on simulator and device is :

enter image description here

So, there is some property or anything in order to table maintain the height defined on the XCode edition? Note that the table has a bigger than the table on simulator.

Upvotes: 0

Views: 500

Answers (1)

jonathanpeppers
jonathanpeppers

Reputation: 26495

You need to check the section height, header and footer:

XCode Screenshot

It is a bit hard to see what is going on in your picture, but make sure you are making use of sections--it almost looks like you have multiple UITableViews. You should only have to use one tableview for your UI here.

A second thing to check is those UISearchBars. Are they meant to be there?

Upvotes: 1

Related Questions