Reputation: 1295
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?
Upvotes: 0
Views: 469
Reputation: 3867
self.tableView is a derived instance variable if the base class is UITableViewController
Check the doc... UITableViewController Class Reference
Upvotes: 1