“导航控制器”)有其“NIB 名称”属性设置为“VerwaltungsTableView.nib”,...方式
我想使用 UITables 和 DetailView 构建一个应用程序。 但我现在收到一个警告:
“选定的 Verwaltung 导航控制器 (Verwaltung)”的“NIB 名称”属性设置为“VerwaltungsTableView.nib”,但此视图控制器不打算以这种方式设置其视图。
但我认为我以正确的方式拥有对象。 此处和在这里您可以看到错误和 InterfaceBuilder。
是什么原因导致此警告?
I want to build an Application with UITables and a DetailView.
But I got now a warning called:
'Selected Verwaltung Nav Controller (Verwaltung)' has its 'NIB Name' property set to 'VerwaltungsTableView.nib', but this view controller is not intended to have its view set in this manner.
But I think I have the Objects in the right manner. Here and here you can see the errors and the InterfaceBuilder.
What causes this warning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
导航控制器旨在组织其他视图控制器。你不应该自己布置它们。您应该创建其他视图控制器,将其中一个指定为导航控制器的根视图控制器,然后编写代码以让用户从那里导航到其他视图控制器。
如果您尝试显示表视图控制器笔尖,那么您可能应该将表视图控制器分配给导航控制器的 rootViewController 属性。
Navigation controllers are meant to organise other view controllers. You aren't supposed to lay them out yourself. You're supposed to create other view controllers, assign one of them as the navigation controller's root view controller, then write code to let the user navigate to the other view controllers from there.
If you're trying to get the table view controller nib to show up, then you should probably be assigning the table view controller to the navigation controller's
rootViewController
property.