Daniel
Daniel

Reputation: 3341

How to change TTLauncherItem's text label frame/position

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!

Upvotes: 0

Views: 509

Answers (1)

esperamier
esperamier

Reputation: 1

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

[[[TTLauncherItem alloc] initWithTitle:@":)"
      image:nil
      URL:@"tt://tabBarTest" canDelete:NO] autorelease]

Upvotes: 0

Related Questions