Skip to content

Instantly share code, notes, and snippets.

@rexmortus
Created May 21, 2011 00:43
Show Gist options
  • Save rexmortus/984082 to your computer and use it in GitHub Desktop.
Save rexmortus/984082 to your computer and use it in GitHub Desktop.
Example Implementation of WebFrameLoadDelegate
- (void)webView:(WebView *)webView didClearWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame {
MyObject *myObject = [[MyObject alloc] init];
[windowObject setValue:myObject forKey:@"myObject"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment