我是这个领域的新手
当我在 AppDelegate 中添加SubView 时出现问题
我有一个自定义控制器,如下所示:
@interface mainViewController : UIViewController <UITableViewDelegate>
{
UITabBarController *myTad;
UITableView *myTable;
aModel *myModel
// ......
}
//Some methods and @property
我想要的只是制作一个视图控制器,让其他控制器也连接到模型。这是做所有事情的地方
并在 AppDelegate 中以适当的方式添加。
[window addSubview: myController.view];
[window makeKeyAndVisible];
return YES
但它只是没有工作?
问题是 loadView,我在 mainViewController 中重写的方法没有做任何事情。它只是通过
我没有错过什么吗?