TTNavigator Three20 openURLAction

发布于 2024-08-28 17:45:18 字数 166 浏览 7 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(1

辞慾 2024-09-04 17:45:18

导航器现在使用 TTURLActionapplyXXX 方法:

[[TTNavigator navigator] openURLAction:[[TTURLAction actionWithURLPath:UrlFor(@"foo/bar")] applyAnimated:YES]];

这使其更具可扩展性,因为不必有 ^2 构造函数。还有许多其他 applyXXX 方法,请查看文档 此处此处

The navigator now uses TTURLAction and the applyXXX method:

[[TTNavigator navigator] openURLAction:[[TTURLAction actionWithURLPath:UrlFor(@"foo/bar")] applyAnimated:YES]];

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

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