I have a UITextField in a view (on an iPhone) but the input text appears very small. I don't see an option in Interface Builder to set the size.
Is there a way to set it declaratively or do I have to resort to code?
I have a UITextField in a view (on an iPhone) but the input text appears very small. I don't see an option in Interface Builder to set the size.
Is there a way to set it declaratively or do I have to resort to code?
You can do it in code as well:
myUITextField.font = [UIFont systemFontOfSize:12.0f];
Cheers.