scud
scud

Reputation: 1157

TTNavigator three20 openURLAction

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?

Upvotes: 2

Views: 2574

Answers (1)

coneybeare
coneybeare

Reputation: 33101

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

Upvotes: 5

Related Questions