Created
July 9, 2014 17:29
-
-
Save lperrin/1e2ca80640cfc2a863d4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
- (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