I have a property called currentViewController that either points to a UIViewController or UITableViewController depending on what segment in a UISegmentedControl is active.
If the currentViewController happens to point to UITableViewController, I can change the UITableView into editing mode by
[self.currentViewController setEditing:YES animated:YES];
However, I now want to run reloadData on the tableView. I tried this,
[self.currentViewController reloadData];
and it failed.
Any ideas on how can I reloadData on the tableView.