Using XCode 4.5.2 I have created a Master/Detail iOS 6.0 project from template. The generated project already contains disclosure indicator ">" in table cell and detail view opens when table row is tapped. Then:
- I added the Search Bar and Search Display Controller above the master table
- According to the following problem I added UITableViewCell class registration in MasterViewController's method
- (void)viewDidLoad
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];
After this registerClass line is added I run the program in simulator. The disclosure indicator is not shown in table cells and the detail view does not open when the table row is tapped.
I followed the advice here that adds disclosure indicator back but the detail view still does not open when table row is tapped.
What else is needed?