Skip to content

Instantly share code, notes, and snippets.

@meelash
Created July 26, 2010 02:28
Show Gist options
  • Select an option

  • Save meelash/490106 to your computer and use it in GitHub Desktop.

Select an option

Save meelash/490106 to your computer and use it in GitHub Desktop.
/*
* AppController.j
* test
*
* Created by You on July 25, 2010.
* Copyright 2010, Your Company All rights reserved.
*/
@import <Foundation/CPObject.j>
@implementation AppController : CPObject
{
}
- (void)applicationDidFinishLaunching:(CPNotification)aNotification
{
// This is called when the application is done loading.
}
- (void)awakeFromCib
{debugger;
// This is called when the cib is done loading.
// You can implement this method on any object instantiated from a Cib.
// It's a useful hook for setting up current UI values, and other things.
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment