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?
self.tableView is a derived instance variable if the base class is UITableViewController
Check the doc…
UITableViewController Class Reference