I have 4 UITableView that share a lot of common functionality.
After build the first, I decide to put the common work in a superclass, then derive from it:
And I left everything else as before. But when try to run it I get:
This is not a suported scenario?
After build the first, I decide to put the common work in a superclass, then derive from it:
Code:
@interface ListController : UITableViewController
<UITableViewDelegate,UITableViewDataSource, UISearchBarDelegate> {
@interface CustomerListViewController : ListController{
And I left everything else as before. But when try to run it I get:
Code:
* Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UITableViewController loadView] loaded the "CustomerList" nib but didn't get a UITableView.
This is not a suported scenario?