The question was already answered for the OP, but for the sake of other people who come here trying to change a label’s text color, use the textColor property:
Swift
myLabel.textColor = UIColor.red // or .red
Objective-C
myLabel.textColor = [UIColor redColor];