I want to just update my tableView (on iPhone) when I click the corresponding button in the tabBar ...
So, I think this should be done as follows:
[self.tableView reloadData]
Right? And done in
(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
But I donβt know how to send reloadData message to tableView from tabBar controller ... Could you help me?
source share