I am unable to control the background color of a UITextField with a borderStyle= UITextBorderStyleRoundedRect. With this border style the ba
UITextField
borderStyle= UITextBorderStyleRoundedRect
ba
You can do this:
textField.backgroundColor = [UIColor whiteColor];
In this case I'm doing it with white color but you can do it with another color for uiColor.
uiColor
Hopes it helps