Created
January 20, 2013 03:55
-
-
Save MKSG-MugunthKumar/4576585 to your computer and use it in GitHub Desktop.
Initializing a custom control.
This file contains 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
-(void) baseInit_ { | |
<#Your code here#> | |
} | |
-(id) initWithCoder:(NSCoder *)aDecoder { | |
if(self = [super initWithCoder:aDecoder]) { | |
[self baseInit_]; | |
} | |
return self; | |
} | |
-(id) initWithFrame:(CGRect)frame { | |
if(self = [super initWithFrame:frame]) { | |
[self baseInit_]; | |
} | |
return self; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment