What are the differences between toViewController, toSharedViewController and toModalViewController when used with TTURLMap?

TTURLMap* map = navigator.URLMap;
[map from:@"*" toViewController:[TTWebController class]];
[map from:@"tt://tabBar" toSharedViewController:[TabBarController class]];
[map from:@"tt://order?waitress=(initWithWaitress:)"
   toModalViewController:[ContentController class]];
link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Using (void)from:(NSString*)URL toViewController:(id)target will always recreate the UIViewController from scratch and won't try to reuse an existing view controller.

So for example, if you call TTOpenURL(@"tt://details/view/1) twice, it will create the view controller twice.

On the other hand, if you use (void)from:(NSString*)URL toSharedViewController:(id)target, the TTNaviagtor will create the controllers in shared mode and reuse them. It's good for menus in tab bar views.

so if you call TTOpenURL(@"tt://menu/1) twice for a url that was created with toSharedViewController, it will reuse an existing view controller (if the controller is in the TTNavigator stack and wasn't released by a memory warning)

the last option, (void)from:(NSString*)URL toModalViewController:(id)target will display the view controller by pushing it without using the existing UINavigationBar. It's helpful if you need to present a "send email" view, or something that already has a UINavigationBar.

link|improve this answer
Thanks buddy, it's really helped!!! – Jason Zhao Jul 11 '11 at 6:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.