my intent is to implement something similar to native iPad Settings app. Settings use UITableViewController and, as such, in detail view can drill down to subviews, however I want to be able to push a view controller via button tap in my detail view.
So I've tried to extend MultipleDetailViews sample application:
1) SecondDetailViewController has property navigationController (which is read-only) set to nil...
2) So I created a new UINavigationController and used it to push my controllers, but that didn't work.
My code:
if (!self.myNavigationController) {
self.myNavigationController = [[UINavigationController alloc] initWithRootViewController:self];
}
FirstDetailViewController *controller = [[FirstDetailViewController alloc] initWithNibName:@"FirstDetailView" bundle:nil];
[[self myNavigationController] pushViewController:controller animated:YES];
[controller release], controller = nil;
Also tried just init method on UINavigationController, but didn't work as well.
Am I trying something that is not possible without implementing custom UISplitViewController? Was I misled by the sample code that for SecondDetailViewController has UINavigationBar?