- (instancetype)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self) {
statements
}
return self;
}
Objective C initWithCoder: Method
Shortcut: init_with_coder
0 Comments
Add Comment
Log in to add a comment
- (instancetype)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self) {
statements
}
return self;
}
Objective C initWithCoder: Method
Shortcut: init_with_coder
Log in to add a comment