TTNavigator three20 openURLAction

时间:2010-04-07 18:09:08

标签: iphone sdk three20 ttnavigator

我是tri20的新手,并试图通过TTNavigator类找到自己的方式。 我尝试通过URL系统推送到新视图。 所以我使用了openURL:animated:方法,它运行得很好,但它已被弃用了,我知道我应该使用openURLAction,但是它没有animated:参数。我错过了什么吗?

1 个答案:

答案 0 :(得分:5)

导航器现在使用TTURLActionapplyXXX方法:

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

这使得它可以更加可扩展,因为不必是n ^ 2构造函数。还有许多其他applyXXX方法,请查看文档herehere