How to make a blue button with white text?
- by Bonnie
// Make text white... and background blue
[myButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[myButton setBackgroundColor:[UIColor blueColor]];
Should that make a button with white text... and a blue background?
It doesn't.