iOS JavaScript bridge iOS JavaScript bridge ios ios

iOS JavaScript bridge


There are a few libraries, but I didn't used any of these in big projects, so you might want to try them out:

However, I think it's something simple enough that you might give it a try yourself. I personally did exactly this when I needed to do that. You might also create a simple library that suits your needs.

1. Execute JS methods from Objective-C

This is really just one line of code.

NSString *returnvalue = [webView stringByEvaluatingJavaScriptFromString:@"your javascript code string here"];

More details on the official UIWebView Documentation.

2. Execute Objective-C methods from JS

This is unfortunately slightly more complex, because there isn't the same windowScriptObject property (and class) that exists on Mac OSX allowing complete communication between the two.

However, you can easily call from javascript custom-made URLs, like:

window.location = yourscheme://callfunction/parameter1/parameter2?parameter3=value

And intercept it from Objective-C with this:

- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {   NSURL *URL = [request URL];    if ([[URL scheme] isEqualToString:@"yourscheme"]) {       // parse the rest of the URL object and execute functions   } }

This is not as clean as it should be (or by using windowScriptObject) but it works.

3. Listen to native JS events from Objective-C (for example DOM ready event)

From the above explanation, you see that if you want to do that, you have to create some JavaScript code, attach it to the event you want to monitor and call the correct window.location call to be then intercepted.

Again, not clean as it should be, but it works.


The suggested method of calling objective c from JS in the accepted answer isn't recommended. One example of problems: if you make two immediate consecutive calls one is ignored (you can't change location too quickly).

I recommend the following alternative approach:

function execute(url) {  var iframe = document.createElement("IFRAME");  iframe.setAttribute("src", url);  document.documentElement.appendChild(iframe);  iframe.parentNode.removeChild(iframe);  iframe = null;}

You call the execute function repeatedly and since each call executes in its own iframe, they should not be ignored when called quickly.

Credits to this guy.


Update: This has changed in iOS 8. My answer applies to previous versions.

An alternative, that may get you rejected from the app store, is to use WebScriptObject.

These APIs are public on OSX but are not on iOS.

You need to define interfaces to the internal classes.

@interface WebScriptObject: NSObject@end@interface WebView- (WebScriptObject *)windowScriptObject;@end@interface UIWebDocumentView: UIView- (WebView *)webView;@end

You need to define your object that's going to serve as your WebScriptObject

@interface WebScriptBridge: NSObject- (void)someEvent: (uint64_t)foo :(NSString *)bar;- (void)testfoo;+ (BOOL)isKeyExcludedFromWebScript:(const char *)name;+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector;+ (WebScriptBridge*)getWebScriptBridge;@endstatic WebScriptBridge *gWebScriptBridge = nil;@implementation WebScriptBridge- (void)someEvent: (uint64_t)foo :(NSString *)bar{    NSLog(bar);}-(void)testfoo {    NSLog(@"testfoo!");}+ (BOOL)isKeyExcludedFromWebScript:(const char *)name;{    return NO;}+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector;{    return NO;}+ (NSString *)webScriptNameForSelector:(SEL)sel{    // Naming rules can be found at: https://developer.apple.com/library/mac/documentation/Cocoa/Reference/WebKit/Protocols/WebScripting_Protocol/Reference/Reference.html    if (sel == @selector(testfoo)) return @"testfoo";    if (sel == @selector(someEvent::)) return @"someEvent";    return nil;}+ (WebScriptBridge*)getWebScriptBridge {    if (gWebScriptBridge == nil)        gWebScriptBridge = [WebScriptBridge new];    return gWebScriptBridge;}@end

Now set that an instance to your UIWebView

if ([uiWebView.subviews count] > 0) {    UIView *scrollView = uiWebView.subviews[0];    for (UIView *childView in scrollView.subviews) {        if ([childView isKindOfClass:[UIWebDocumentView class]]) {            UIWebDocumentView *documentView = (UIWebDocumentView *)childView;            WebScriptObject *wso = documentView.webView.windowScriptObject;            [wso setValue:[WebScriptBridge getWebScriptBridge] forKey:@"yourBridge"];        }    }}

Now inside of your javascript you can call:

yourBridge.someEvent(100, "hello");yourBridge.testfoo();