MMDrawerController 示例应用程序视图初始化
MMDrawerController example app view initialization
我是 iOS 开发的新手。 MMDrawerControllerKitchenSink 原来是如何制作应用程序的一个很好的例子。这是一个使用 MMDrawerController 的示例应用程序。
我找不到 MMExampleCenterTableViewController 的视图 属性 的任何初始化。有 viewDidLoad 方法,但视图 属性 的第一行是
_tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
而且这个方法的所有上层都没有view的alloc/init。谁能告诉我视图 属性 实际上是如何在 MMDrawerControllerKitchenSink 中初始化的?
谢谢。
如果 MMExampleCenterTableViewController 是初始视图,它可能正在 AppDelegate.m
中初始化。
我是 iOS 开发的新手。 MMDrawerControllerKitchenSink 原来是如何制作应用程序的一个很好的例子。这是一个使用 MMDrawerController 的示例应用程序。
我找不到 MMExampleCenterTableViewController 的视图 属性 的任何初始化。有 viewDidLoad 方法,但视图 属性 的第一行是
_tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
而且这个方法的所有上层都没有view的alloc/init。谁能告诉我视图 属性 实际上是如何在 MMDrawerControllerKitchenSink 中初始化的?
谢谢。
如果 MMExampleCenterTableViewController 是初始视图,它可能正在 AppDelegate.m
中初始化。