Always, when i create ViewController, i have this :
#import "SomeVCC.h"
@interface SomeVC ()
@end
@implementation SomeVC
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end
And often i need some cleaner version, like this:
#import "SomeVC.h"
@interface SomeVC ()
@end
@implementation SomeVC
#pragma mark - LifeCycle
- (void)viewDidLoad
{
[super viewDidLoad];
}
@end
How to change apple's or create my own viewContoller template? I have founded some templates using alcatraz, but they are not right for me.