如何从 XIB 中删除表视图?
我想创建一个没有表视图内容的基于导航的应用程序...当我在项目开始时选择“基于导航的应用程序”时,我得到一个继承自 UITableViewController 的根视图...我希望继承自 UINavigationController 并删除实现文件中的所有表方法...问题是...
如何更改界面生成器中的 XIB 以提供简单的 UIView 而不是 UITableView?
请并谢谢你
I would like to create a navigation based application without the Table View stuff... when I select "navigation based application" at the project start, I get a Root view that inherits from UITableViewController... I wish to inherit from UINavigationController and delete all the table methods in the implementation file... question is...
how do I change the XIB in interface builder to give a simple UIView rather than UITableView?
please and thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在“对象”列表中,选择“TableView”,然后按“Delete”。
然后拖入您想要的任何类型的视图,例如导航栏控制器。
In the Objects list, select the TableView, press Delete.
Then drag in whatever type of view you want, like a NavBar controller.
很简单,但是有些人忘记了几个步骤。
It is simple, but some people forget a few steps.
首先从 .xib 中删除 UITableView,然后在 .xib 中添加视图,并从 .h 类中删除 UITableViewController 并使用 UIViewController 对其进行编辑。
First Delete the UITableView from .xib then add the view in .xib and delete the UITableViewController from .h class and edit it with UIViewController.