vote up 0 vote down star

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??

tyresController = [[TyresViewController alloc] initWithNibName: @"TyresView" 
                                                        bundle: nil];
tyresController.title = @"Tyre pressures";
[self.navigationController pushViewController: tyresController animated: YES];
[tyresController release]; 
When the cell is selected the program crashes. Here's the view's header -

 #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

flag
can you can post the crash output you are getting? – paulthenerd Oct 31 at 14:51

1 Answer

vote up 0 vote down

Have you connected to view outlet in Interface Builder to the UIView object? Also, can you post the crash details?

link|flag
Thanks for replying. I believe I have connected the view up. But I have several fields in the view and in the header, none of which I've connected up yet - may this cause the problem? The crash does not cause a dump simply the simulator view goes dark and slightly lighter in the middle and then just return me to XCode:-| I have another tableview that works OK. I'm sure it's how I've built this UIView. – Maxwell Segal Oct 31 at 17:11
Just to let you know, I have just got it working. I rebuilt the xib from scratch and all is OK -. Thanks guys, Maxwell – Maxwell Segal Oct 31 at 17:50

Your Answer

Get an OpenID
or

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