有没有办法将 UITableViewController 的 tableView 部分添加到 UIView?
这是我所拥有的...
1) UIViewController - MainViewController
2) UIView - customUIView - 添加到 MainViewController (加载新页面时替换此 UIView)
单击按钮时,我的应用程序中的所有其他页面都使用(示例)加载
mainViewController.customUIView = [[LoginPage alloc] initWithFrame:mainViewController.view.bounds];
3) UITableViewController - ScoresNotificationsPage - 这是我的问题,尝试将其中的 tableView 部分添加到 UIView 中并让它显示在 MainViewController 上,就像添加了任何其他 UIView 一样。
当我尝试使用以下方法将 UITableViewController 的 tableView 部分加载到 customUIView 中时:
mainViewController.customUIView = [[ScoresNotificationsPage alloc] initWithFrame:mainViewController.view.bounds];
我收到以下错误
从“ScoresNotificationsPage *”分配给“UIView *”的不兼容指针类型
知道我可以做些什么来让 tableView 出现吗?
先感谢您。
呼...