Skip to content

Instantly share code, notes, and snippets.

@colemancda
Last active December 16, 2015 04:49
Show Gist options
  • Save colemancda/5379790 to your computer and use it in GitHub Desktop.
Save colemancda/5379790 to your computer and use it in GitHub Desktop.
Init for NSViewController - Loads the XIB with the same name as the NSViewController's Class
- (id)init
{
self = [self initWithNibName:NSStringFromClass([self class]) bundle:nil];
if (self) {
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment