Skip to content

Instantly share code, notes, and snippets.

@lperrin
Created July 9, 2014 17:29
Show Gist options
  • Save lperrin/1e2ca80640cfc2a863d4 to your computer and use it in GitHub Desktop.
Save lperrin/1e2ca80640cfc2a863d4 to your computer and use it in GitHub Desktop.
- (id)init {
self = [super initWithWindowNibName:@"FAMainApp"];
if (self) {
bridge = [[FAMainAppJSBridge alloc] initWithApp:self];
}
return self;
}
- (void)windowDidLoad {
[super windowDidLoad];
// Attach obj-c <-> js bridge
id win = [self.web windowScriptObject];
[win setValue:bridge forKey:@"osx"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment