UITextView – setting font not working with iOS 6 on XCode 5

Even stranger, this only happens on iPhone, not iPad.

If you’re setting the font in code and don’t want an editable text view, do this:

textView.editable = YES;
textView.font = newFont;
textView.editable = NO;

Leave a Comment