iOS UITableView 实例变量?

发布于 2024-12-19 06:09:52 字数 203 浏览 0 评论 0原文

我正在构建一个具有 UITableView 和搜索功能的应用程序。但是当我尝试使用以下代码重新加载 UITableView 时:

[self.tableView reloadData];

找不到属性 UITableView。我是 iOS 新手,但我认为 UITableView 的实例变量是错误的。我如何/在哪里声明找到它?

I'm building an app with a UITableView and search function. But when I try to reload the UITableView with this code:

[self.tableView reloadData];

The property UITableView is not found. I'm new to iOS but I think the instance variable of the UITableView is wrong. How/where do I declare of find it?

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

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

发布评论

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

评论(1

仙女山的月亮 2024-12-26 06:09:52

如果基类是 UITableViewController,则 self.tableView 是派生实例变量

检查文档...
UITableViewController类参考

self.tableView is a derived instance variable if the base class is UITableViewController

Check the doc...
UITableViewController Class Reference

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