I thought this information would have been easier to find :-)
What is the default height of a UITableViewCell? It looks like 44 pixels, but I'd prefer to be sure.
|
I thought this information would have been easier to find :-) What is the default height of a UITableViewCell? It looks like 44 pixels, but I'd prefer to be sure. |
|||
|
|
|
It's 44 pixels. Definitely. I'll never forget that number. 44px is also the default height for UIToolbar and UINavigationBar. (Both switch to 32px when autorotated to landscape orientation.) |
|||||||||||||||||||||
|
|
When |
||||
|
|
|
If you want to calculate this on the fly, just allocate a dummy table cell and read off its height
This way you defend against changes in future versions of iOS, although I suppose that is unlikely. |
|||
|
|
|
That sounds about right. But to be sure you could load up Interface builder, put in a UITableViewCell into the project then check the size properties in the Inspector window. I do not have my MacBook with me right now so I cannot check. But if you don't get a better answer from someone, that is how you can check for yourself. |
|||
|
|
|
"When style = UITableViewStyleGrouped, the default height of the top & bottom cells is actually 45.0f (not 44.0f). And, if the grouped table is only one row the cell height will be 46.0f." It's wrong!! 44.0f in fact! I just test it! |
|||
|
|