views:

471

answers:

1

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?

+1  A: 

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

coneybeare
Nice, thanks alot for the docs and code
hecta