webview 点击按钮返回上一页面或者返回上一个界面

if ([self.webView canGoBack]) {
     [self.webView goBack];
}
else{
    [self.navigationController popViewControllerAnimated:YES];
}

猜你喜欢

转载自blog.csdn.net/u013983033/article/details/85260344