基于导航的应用程序,没有 uitableview 错误

发布于 2024-12-08 23:45:24 字数 455 浏览 0 评论 0原文

我这样做: 首先创建基于导航的应用程序。 然后从rootViewController.xib中删除UITableView,添加一个UIView将其连接到File's Owner。 将 RootViewcontroller.h 中的 UITableView 更改为 UIViewController 最后清理了 RootViewcontroller.mUITableView 的所有方法,

但是当我运行项目时收到此错误:

-[RootViewcontroller tableView:numberOfRowsInSection:]:unreconized selector sent to instance

我做错了什么?

I do this:
First create navigation based application.
Then delete UITableView from rootViewController.xib, add a UIView connect it to File's Owner.
Change UITableView to UIViewController in RootViewcontroller.h
Finally clean all methods of UITableView in RootViewcontroller.m

But when I run the project receives this error:

-[RootViewcontroller tableView:numberOfRowsInSection:]:unreconized selector sent to instance

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最佳男配角 2024-12-15 23:45:24

有几种可能性。

  1. 确保头文件中实现了 UITableView 协议。
    例如 @interface TestingViewController : UIViewController

  2. 检查 Interface Builder 中的连接并确保其链接正确

There are a few possibility.

  1. Make sure that UITableView protocol is implemented in the header file.
    Eg @interface TestingViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>

  2. Check that your connection from in the Interface Builder and make sure its linked properly

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