Skip to content

Instantly share code, notes, and snippets.

@hechen
Created August 15, 2017 02:51
Show Gist options
  • Save hechen/ebc5591e145a8c7b52c2531ff2e4d151 to your computer and use it in GitHub Desktop.
Save hechen/ebc5591e145a8c7b52c2531ff2e4d151 to your computer and use it in GitHub Desktop.
--- title: "UIViewController Lifecycle" summary: "Placeholders for all of the view controller lifecycle methods" platform: iOS completion-scope: Class Implementation ---
#pragma mark - UIViewController
- (void)viewDidLoad {
[super viewDidLoad];
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
}
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment