I generally like the View Persistor in the Three20 URLNavigation, however, I would like to exclude a few Controllers so they can't be the the first controller to show when the app loads. how can i do that?
A:
In the viewController that should not be persisted, just overwrite persistView: and return NO. That should do the trick.
- (BOOL)persistView:(NSMutableDictionary*)state {
return NO;
}
see TTAlertViewController, TTActionSheetController
tonklon
2010-07-15 12:46:37