Skip to content

Instantly share code, notes, and snippets.

@hustKiwi
Created June 15, 2012 06:51
Show Gist options
  • Save hustKiwi/2935077 to your computer and use it in GitHub Desktop.
Save hustKiwi/2935077 to your computer and use it in GitHub Desktop.
- (BOOL)webView:(UIWebView *)webView
shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType {
NSURL * url = [request URL];
if ([[url scheme] isEqualToString:@"crab"]) {
// 在这里做js调native的事情
// ....
// 做完之后用如下方法调回js
[webView stringByEvaluatingJavaScriptFromString:@"window.command"];
return NO;
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment