TTLauncherView网址查看控制器? - iPhone SDK

时间:2011-04-12 14:39:28

标签: iphone sdk three20 launcher

嘿,我想知道如何将视图控制器链接到TTLauncher中的项目?

[self launcherItemWithTitle:@"Apple" image:@"bundle://safari_logo.png" URL://What to write here?]

1 个答案:

答案 0 :(得分:0)

您可以将其链接到TTURLMap中链接到所需视图控制器的URL。所以你要打个例子:

[self launcherItemWithTitle:@"Apple" image:@"bundle://safari_logo.png" URL:@"tt://apple"]

然后当你宣布你的TTURLMAP时:

TTNavigator *navigator = [TTNavigator navigator];
[navigator.URLMap from:@"tt://apple" toViewController:[YourViewController class]];

其中YourViewController是您要发布的

希望这有帮助