If any string assigned to UITextView and string contain "\n" then UITextView font changes randomly. means font size changing.
This issue occurring me on only iOS 6. same code working on iOS 5.
If any string assigned to UITextView and string contain "\n" then UITextView font changes randomly. means font size changing.
This issue occurring me on only iOS 6. same code working on iOS 5.
UITextfield is intended to be used for single line text, if you want multi-line, use UITextview.
Probably because you have adjustsFontSizeToFitWidth
set to YES on your UITextField
.