Hi i have a slitview controller set up and in the first instance i can access methods in the detail view from the root view fine. but when i push in new views in the rootview i loose the ability to change the detail view.
Ive set up the split view as such
detailViewController = [[DetailViewController alloc] init];
rootViewController = [[RootViewController alloc] initWithStyle:UITableViewStyleGrouped];
rootViewController.detailViewController = detailViewController;
rootViewController.navigationItem.title = @"Browse";
UINavigationController *nav = [[[UINavigationController alloc] initWithRootViewController:rootViewController] autorelease];
UINavigationController *detNav = [[[UINavigationController alloc] initWithRootViewController:detailViewController] autorelease];
splitViewController = [[UISplitViewController alloc] init];
splitViewController.tabBarItem = controller.tabBarItem;
splitViewController.viewControllers = [NSArray arrayWithObjects:nav, detNav, nil];
splitViewController.delegate = detailViewController;
[controllers replaceObjectAtIndex:index withObject:splitViewController];
I drill down the root view as such
ShopCatControllerIpad *scController = [[ShopCatControllerIpad alloc] initWithNibName:@"ShopCatController" bundle:[NSBundle mainBundle]];
scController.currentLevel = 0;
scController.detailViewController = detailViewController;
UIBarButtonItem *newBackButton = [[UIBarButtonItem alloc] initWithTitle: @"Home" style: UIBarButtonItemStyleBordered target: nil action: nil];
[[self navigationItem] setBackBarButtonItem: newBackButton];
[newBackButton release];
[self.navigationController pushViewController:scController animated:YES];
[scController release];
I figured passing the detailViewCotroller instance down the line it would work but it doesent.
ANy help would be greatly appreciated.