I have a UITableViewController subclass that\'s instantiated, depending on where it\'s used, in a NIB or via code. In both cases I want to do customization in
UITableViewController
Implement:
- (void) viewDidLoad
and do your component initialization there.
It has the advantage of only doing the initialization when the view is actually requested.
Or just make a separate setup method invoked by all initializers.