Skip to content

Instantly share code, notes, and snippets.

@benoitsan
Created April 27, 2012 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benoitsan/2512033 to your computer and use it in GitHub Desktop.
Save benoitsan/2512033 to your computer and use it in GitHub Desktop.
NSWindowController
//
// BBMyWindowController.m
// StacksCollection
//
// Created by Benoît Bourdon on 27/04/12.
// Copyright (c) 2012 Creaceed. All rights reserved.
//
#import "BBMyWindowController.h"
@interface BBMyWindowController ()
@end
@implementation BBMyWindowController
- (id)initWithWindow:(NSWindow *)window
{
self = [super initWithWindow:window];
if (self) {
// Initialization code here.
}
return self;
}
- (void)windowDidLoad
{
[super windowDidLoad];
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment