0

I need a custom TTLauncherItem displaying the text on to of the image. Is there a way to get this working?

Default looks like:

+----+
|    |
+----+
 text

And I want it to be like this:

+----+
|text|
+----+

Thanks for your help!

Daniel
  • 3,331
  • 4
  • 19
  • 17

1 Answers1

0

you can modify the image parameter in the TTLauncherItem init function.

[[[TTLauncherItem alloc] initWithTitle:@":)"
      image:nil
      URL:@"tt://tabBarTest" canDelete:NO] autorelease]
Shawn Chin
  • 84,080
  • 19
  • 162
  • 191
  • 1
    That's not what he asked. He wants to change the position of the title label relative to the image, but he still wants the image. – zekel Apr 14 '11 at 22:07