TTNavigator Three20 openURLAction
我是 Three20 的新手,正在尝试通过 TTNavigator 课程找到自己的方法。 我尝试通过 URL 系统推送到新视图。 所以我使用了 openURL:animated: 方法,它工作得很好,但它已被弃用,我知道我应该使用 openURLAction 来代替,但它没有animated: 参数。我错过了什么吗?
I'm new to three20 and trying to find my way through the TTNavigator class.
I try to push to a new view via the URL system.
So I used openURL: animated: method which works just fine, but it's deprecated, and I know that I should use openURLAction instead, but this has no animated: parameter. Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
导航器现在使用
TTURLAction
和applyXXX
方法:这使其更具可扩展性,因为不必有 ^2 构造函数。还有许多其他
applyXXX
方法,请查看文档 此处和此处The navigator now uses
TTURLAction
and theapplyXXX
method:This lets it be much more scaleable in that there doesn't have to be a n^2 constructors. There are many other
applyXXX
methods, check out the docs here and here