what i need is when someone clicked on tabBarItem 0 it will reload the page
I have tabBarController in my AppDelegate.m file
my problem is how to call webview in MainView.m to reload
i use code to check which tabBarItem was clicked and its work fine
(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
NSLog(@"TabItem pressed");
if (viewController == [TabBarController.viewControllers objectAtIndex:0]) {
NSLog(@"Tab 1 was pressed");
}
}