[self.navigationController popViewControllerAnimated:YES];
基本的に、私が欲しいのは、特定のボタンが押されたとき、およびGoogleページにいる場合に、この関数を実行する関数です。しかし、私がGoogleページにいなくても機能は起こります。不足している可能性のあるものはありますか?
- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
{
if(wasClicked)
{
if([[request.URL absoluteString] rangeOfString:@"google"].location!=NSNotFound)
{
[self.navigationController popViewControllerAnimated:YES];
}
}
return YES;
}