iOS UITableView 实例变量?
我正在构建一个具有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果基类是 UITableViewController,则 self.tableView 是派生实例变量
检查文档...
UITableViewController类参考
self.tableView is a derived instance variable if the base class is UITableViewController
Check the doc...
UITableViewController Class Reference