overriding loadView in a UITableViewController subclass
问题 I am trying to setup a UITableViewController so that its tableView belongs to my custom subclass. My loadView method currently looks like this: - (void) loadView { MyTableViewSubclass* tv = [[[MyTableViewSubclass alloc]initWithFrame: CGRectZero style: UITableViewStylePlain]autorelease]; self.view = tv; self.tableView = tv; } I am getting crashes later on that go away if I comment out the above method. So something is missing. But what? Apple's documentation says I should not be calling super