Created
June 4, 2014 06:41
-
-
Save cotkjaer/06fbdda78f999e19b92d to your computer and use it in GitHub Desktop.
Init for Custom UIView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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