TTLauncherView 查看控制器的 url? - iPhone SDK

发布于 2024-10-31 16:02:58 字数 165 浏览 1 评论 0原文

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

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

Hey, I would like to know how to link a view controller to a item in the TTLauncher?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征﹌骨岁月お 2024-11-07 16:02:59

您可以将其链接到 TTURLMap 中的 URL,该 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 是您想要启动的

希望这会有所帮助

You link it to a URL in your TTURLMap that is linked to the view controller you want. So you'd call for example:

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

and then when you declare your TTURLMAP:

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

where YourViewController is the one you want to launch

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文