Skip to content

Instantly share code, notes, and snippets.

@nickjs
Created February 25, 2010 16:31
Show Gist options
  • Save nickjs/314695 to your computer and use it in GitHub Desktop.
Save nickjs/314695 to your computer and use it in GitHub Desktop.
var SharedController;
@implementation MyWindowController : CPWindowController
{
}
+ (id)sharedController
{
if (!SharedController)
SharedController = [[self alloc] init];
return SharedController;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment