I setup a UITableViewController in my app, but the data changes about 5 seconds after the initial layout.
How can I reinitialize the tableview once the data is loaded?
Essentially, I need the table view to be stripped down and start over. It’s necessary that the following function is looped over again:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
I suspect it’s something really easy that I’m just not seeing…
Call
reloadDataon your tableview. In yourUITableViewControllerinstance or subclass just call