How to set text color to black for TTLauncherItem from Three20 library? I saw that the style property is NSString .
I am trying to assign something like this:
TTTextStyle *aux = [TTTextStyle styleWithFont:[UIFont boldSystemFontOfSize:12] color:RGBCOLOR(80, 80, 80) minimumFontSize:12 shadowColor:nil shadowOffset:CGSizeZero next:nil];
I saw that there are several examples of subclassing a style and overriding it for a button, but is there a simpler solution, for example, just assigning the style / color that I want to use TTLauncherItem ?
source share