HI guys,
I have this error that is keeping me from moving forward. I basically have an application which contains a UITabViewController which points to individual UIViewControllers. So one of the tabs, I want to implement a basic TableViewController.
Now, no matter what i do, whether its cut and paste sample UIViewController code that implements a UITableView, or whatever, or even just the default UITableViewController template from Xcode, i get the same error below:
2009-09-06 12:29:23.889 iKosher[12536:207] * -[UIViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0xe1d8d0 2009-09-06 12:29:23.891 iKosher[12536:207] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[UIViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0xe1d8d0' 2009-09-06 12:29:23.891 iKosher[12536:207] Stack: ( 807902715, 2492915529, 808284155, ...
In IB, all I have done is drag onto the view a UITableView and set its delegates to point to the file owner.
Not sure what else i can do from here