如何从 XIB 中删除表视图?

发布于 2024-11-08 02:25:02 字数 216 浏览 1 评论 0原文

我想创建一个没有表视图内容的基于导航的应用程序...当我在项目开始时选择“基于导航的应用程序”时,我得到一个继承自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

⒈起吃苦の倖褔 2024-11-15 02:25:02

在“对象”列表中,选择“TableView”,然后按“Delete”。

在此处输入图像描述

然后拖入您想要的任何类型的视图,例如导航栏控制器。

In the Objects list, select the TableView, press Delete.

enter image description here

Then drag in whatever type of view you want, like a NavBar controller.

氛圍 2024-11-15 02:25:02

很简单,但是有些人忘记了几个步骤。

  1. 删除表视图
  2. 添加视图
  3. 确保连接
  4. .h 文件中 viewcontroller.view 的插座 将超类更改为视图控制器,而不是表视图控制器。

It is simple, but some people forget a few steps.

  1. delete the table view
  2. add a view
  3. make sure to wire up the outlet for the viewcontroller.view
  4. in the .h file change the super class to view controller, rather than tableview controller.
夜访吸血鬼 2024-11-15 02:25:02

首先从 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文