iOs開発の新人で、この問題を解決できません。uitabを選択したときにuiwebviewをリロードする方法は次のとおりです。私のコードは次のとおりです。
- (void)tabBarController:(UITabBarController *)aTabBarController didSelectViewController:(UIViewController *)viewController
{
if(self.tabBarController.selectedIndex == 0)
{
[[NSURLCache sharedURLCache] removeAllCachedResponses];
BSHomeViewController *homeViewController = [[BSHomeViewController alloc] initWithNibName:nil bundle:nil];
BSHomeViewController.webView = nil;
[BSHomeViewController.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:HOMEPAGE]]];
}
[[NSUserDefaults standardUserDefaults] setInteger:self.tabBarController.selectedIndex forKey:@"BSSelectedTab"];
}
appdelegate で宣言しますが、リロードしません。
この問題を解決するのを手伝ってください。すべての回答は大歓迎です。