I am suffering the same problem as here UITextField's custom font changes while in edit mode and could really do with a solution.
I have 4 UITextFields that I as
You can set the font again when editing, the font will be the same when editing.
- (void)textFieldDidBeginEditing:(UITextField *)textField { textField.font = customizedFont; //The font you want to use no matter editing/no editing }