What is the default font size of textLabel and detailTextLabel?
|
You can always set any font to those labels in code so if you want some guaranteed fixed values you'd better do that as size values may vary depending on many factors (cell's style, sdk version, os version etc). I've tested on simulator with 4.2 SDK version and got following results (no extra properties were set for cells):
|
|||
|
When I run this on the iPad 5.0 simulator:
I see: cellStyleValue2 text font: font-family: "Helvetica"; font-weight: bold; font-style: normal; font-size: 12px cellStyleValue2 detail font: font-family: "Helvetica"; font-weight: bold; font-style: normal; font-size: 15px Since these parameters apparently vary, logging the font objects is good way to know without the guess work... |
|||
|
|
