uinavigationcontroller - iPhone - view not loading -


I'm pushing a UITableViewController on a navigation controller. Displays the title (set in the viewDidLoad), but not the table.

called numberOfSectionsInTableView . But tableview: numberOfRowsInSection: is not called. I'm passing in 1, so it should find the number of rows.

  - (NSInteger) numberOfSectionsInTableView: (UITableView *) tableView {return 1; }  

I am setting the view as follows:

  SelectUserViewController * nextController = [[SelectUserViewController alloc] initWithStyle: UITableViewStyleGrouped]; NextController.managedObjectContext = managedObjectContext; OrangeQCAppDelegate * Rep = [[UIApplication shared application] representative]; [Delegate.navigationController pushViewController: nextController Animated: Yes];  

Then, the viewDidLoad method is called. And my class is set as follows:

  @ User interface: User control: UITableViewController & lt; UITableViewDelegate, UITableViewDataSource & gt; {...}  

What else should I look like?

Update: It seems that it is too little to do with it, when I go through a debugger, this number looks like IFsectionsInTableView it disappears (I think this UITableViewController In the class). With UITableViewController and more ViewController that is setting all this, it looks like everything is being allocated and is being released properly, but it is not slipping away new ideas (I have a different view Tried to push forward and that too failed).


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -