UIWebView怎么拦截Ajax请求
我在用WebView放在NativeApp里展示一个页面,但是要屏蔽这个页面上的所有操作。
我这样写
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { if (self.firstRequest) { self.firstRequest = NO; return YES; } else { return NO; } }
这样,就只有第一次请求可以加载,后边都不允许。但是页面上的Ajax不会进这个方法,拦截不到,怎么办。
有什么办法可以拦截Ajax请求
Sena塞纳
10 years, 8 months ago
Answers
ajax请求不会到这个方法里面
look this demo 加入你的工程就可以
http://www.cocoawithlove.com/2010/09/...
AKIKO
answered 10 years, 8 months ago