I am having a lot of trouble trying to change the color in the TTLauncherItem, because the default gray color does no work with my background.
Any ideas?
I am having a lot of trouble trying to change the color in the TTLauncherItem, because the default gray color does no work with my background.
Any ideas?
You can find the answer here: http://groups.google.com/group/three20/browse_thread/thread/552d453dea748645
Basically you need to set a TTStyleSheet and perform all you customizations there.
Here's what I used to change the text color of
TTLauncherItem
from the default gray color to black (looks better on a white background):(1) Create a Stylesheet that inherits from
TTDefaultStyleSheet
:Stylesheet.h:
Stylesheet.m:
(2) In AppDelegate.m, initialize the Stylesheet:
That's it ... in the Stylesheet, change the
UIFont
andRGBCOLOR(0, 0, 0)
to suit your requirements.