I have a UILabel which I set a font size and a font name with Interface Builder. Now I have to read the values of both in my ViewController.
How can I do this?
Best Regards.
|
I have a UILabel which I set a font size and a font name with Interface Builder. Now I have to read the values of both in my ViewController. How can I do this? Best Regards. |
|||
|
|
|
Add a property to your view controller's .h file:
Link the label to this IBOutlet under "File's Owner" outlets in Interface Builder. Add the property synthesizer in the .m
Make sure you release it in -dealloc
Then to get the font name and size all you need is
|
|||||||||||
|
|
Pointsize value is not the Font Size of used in UIFont size property. Say if you go set interface builder font size to 14 and do a print of the pointSize you'll get only 11. |
|||
|
|
|
How about using:
? |
|||
|
|