Quick question, does anyone know how to programatically make the text in the textField bold or italic?
@property(nonatomic, retain) IBOutlet UITextField *textField_TOP_01;
[textField_TOP_01 setTextColor:[UIColor redColor]];
[textField_TOP_01 setText:@"This text is bold"];
Much appreciated
Gary