I'm a newbie to iOS development. MMDrawerControllerKitchenSink turned out to be a great example of how to make an app. It is an example app that uses MMDrawerController.
I cannot find any initialization of the view property of the MMExampleCenterTableViewController. There is the viewDidLoad method but the first line with the view property is
_tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
And there is no alloc / init of the view in all the upper hierarchy of this method. Can anyone, please, tell me how the view property is actually gets initialized in the MMDrawerControllerKitchenSink?
Thank you.