iOS's UIColor class makes it pretty easy to specify a color using red, green, blue (RGB) and alpha components:
// set pale yellow color
label.textColor = [UIColor colorWithRed:1.0
green:1.0
blue:0.5
alpha:1.0];
However, as with many Cocoa API's, it's pretty verbose. Web developers would …