Created
September 10, 2012 02:51
-
-
Save irace/3688560 to your computer and use it in GitHub Desktop.
JavaScript/native bridge for iOS's UIWebView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request | |
navigationType:(UIWebViewNavigationType)navigationType { | |
NSString *urlString = [[request URL] absoluteString]; | |
if ([urlString hasPrefix:@"js:"]) { | |
NSString *jsonString = [[[urlString componentsSeparatedByString:@"js:"] lastObject] | |
stringByReplacingPercentEscapes]; | |
NSData *jsonData = [jsonString dataUsingEncoding:NSUTF8StringEncoding]; | |
NSError *error; | |
id parameters = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers | |
error:&error]; | |
if (!error) { | |
// TODO: Logic based on parameters | |
} | |
} | |
return NO; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sendObjectMessage = function(parameters) { | |
var iframe = document.createElement('iframe'); | |
iframe.setAttribute('src', 'js:' + JSON.stringify(parameters)); | |
document.documentElement.appendChild(iframe); | |
iframe.parentNode.removeChild(iframe); | |
iframe = null; | |
}; | |
sendObjectMessage({name: 'Bryan', company: 'Tumblr'}); |
Nice!
Nice work and it works well in iOS8, but i think this code is a bit tricky.. hmmm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍