I create a button programmatically..........
button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [button addTarget:self action:@selector(aMethod:) fo
Solution in Swift 3:
button.setTitleColor(UIColor.red, for: .normal)
This will set the title color of button.