实际上我正在加载uiwebview上的登录页面。成功登录后,它会自动转到另一个页面,但我不想要。我想停止在登录页面上加载,并且我想要使用登录验证来打击另一个URL并保存将在响应中返回的数据。之后我想显示json形式的数据,另一个视图控制器。
答案 0 :(得分:1)
实施webview委托方法
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
// handle the url here and return NO to prevent redirecting for particular url
return YES;
}