Skip to content

Instantly share code, notes, and snippets.

@LazyClutch
Created April 25, 2016 02:38
Show Gist options
  • Save LazyClutch/7601d599cb79887e935a2a48fafc6134 to your computer and use it in GitHub Desktop.
Save LazyClutch/7601d599cb79887e935a2a48fafc6134 to your computer and use it in GitHub Desktop.
My UIViewController Template
//
// ___FILENAME___
// ___PROJECTNAME___
//
// Created by ___FULLUSERNAME___ on ___DATE___.
//___COPYRIGHT___
//
#import "___FILEBASENAME___.h"
@interface ___FILEBASENAMEASIDENTIFIER___ ()
@end
@implementation ___FILEBASENAMEASIDENTIFIER___
- (instancetype)init
{
self = [super init];
if (self) {
[self setupViewsAndConstraints];
}
return self;
}
#pragma mark - life cycle -
- (void)viewDidLoad {
[super viewDidLoad];
}
#pragma mark - event response -
#pragma mark - delegate -
#pragma mark - private -
- (void)setupViewsAndConstraints
{
}
#pragma mark - getter -
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment