Skip to content

Instantly share code, notes, and snippets.

@cotkjaer
Created June 4, 2014 06:41
Show Gist options
  • Save cotkjaer/06fbdda78f999e19b92d to your computer and use it in GitHub Desktop.
Save cotkjaer/06fbdda78f999e19b92d to your computer and use it in GitHub Desktop.
Init for Custom UIView
#pragma mark - Init
- (void)setup
{
<#view_setup_code#>
}
- (instancetype)initWithCoder:(NSCoder *)decoder
{
self = [super initWithCoder:decoder];
[self setup];
return self;
}
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
[self setup];
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment