I have a grouped tableview that then tries to push a new view depending on which cell is selected. The issue is, that cells drill-down to views that are not necessarily tables - thus using coding examples from the reference books available is not that helpful - the views I'm trying to push are webview, tableview, textview etc.
I have obviously set up the views's "h" and "m" files incorrectly, or perhaps the XIB files, and need a little advice.
I'm pushing the new view's controller and NIB from rootviewcontroller - is this correct? The top-level view is a UITableView but this view below which I'm calling is a UIView - text entry screen??
When the cell is selected the program crashes. Here's the view's header -
tyresController = [[TyresViewController alloc] initWithNibName: @"TyresView"
bundle: nil];
tyresController.title = @"Tyre pressures";
[self.navigationController pushViewController: tyresController animated: YES];
[tyresController release];
#import
@interface TyresViewController : UIViewController { IBOutlet TyresViewController *tyresController; IBOutlet UIView *tyresView; }
-(void) save: (id) sender; @end AND TyresViewController.m file -
#import "TyresViewController.h"
@implementation TyresViewController
Thanks in advance Maxwell
