Skip to content

Instantly share code, notes, and snippets.

@lennypham
Created March 15, 2013 03:26
Show Gist options
  • Save lennypham/5167282 to your computer and use it in GitHub Desktop.
Save lennypham/5167282 to your computer and use it in GitHub Desktop.
UIViewControllerTemplate
#pragma mark - Initialization
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self)
{
// Custom initialization
}
return self;
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark - IBAction
#pragma mark - Instance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment