Reputation: 305
I am working on a core data app with three20. I have a specific situation where I have to show the Detailed View on an entity when a launcher button is clicked. I also want to push the list of all the entities before I push this detail view. To be more specific this is what I want to accomplish.
Is this possible in three20 with a single URL for the Launcher Item? Is there any other way to accomplish this?
I tried looking at various ways of doing it but I was not able to accomplish this. Can anybody suggest any ideas?
Thanks!
Upvotes: 2
Views: 319
Reputation: 33101
Not with a single URL, but in the viewDidAppear
method, you can call
[[TTNavigator navigator] openURLAction:[[TTURLAction actionWithURLPath:<YOUR_SECOND_PATH>] applyAnimated:YES]];
If you want them both to animate, other wise call it in viewDidLoad
as
[[TTNavigator navigator] openURLAction:[TTURLAction actionWithURLPath:<YOUR_SECOND_PATH>]];
Upvotes: 1