TTLauncherView 查看控制器的 url? - iPhone SDK
嘿,我想知道如何将视图控制器链接到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其链接到 TTURLMap 中的 URL,该 URL 链接到您想要的视图控制器。因此,您可以调用例如:
然后当您声明 TTURLMAP 时:
其中
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:
and then when you declare your TTURLMAP:
where
YourViewController
is the one you want to launchHope this helps