嘿,我想知道如何将视图控制器链接到TTLauncher中的项目?
[self launcherItemWithTitle:@"Apple" image:@"bundle://safari_logo.png" URL://What to write here?]
答案 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
是您要发布的
希望这有帮助