Skip to content

Commit

Permalink
InitWithCoder required initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Franklin Webber committed Mar 27, 2012
1 parent a1385fd commit dea7cf3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions PSStackedView/PSStackedViewController.m
Expand Up @@ -135,6 +135,16 @@ - (id)init {
return self; return self;
} }


- (id)initWithCoder:(NSCoder *)coder {
self = [super initWithCoder:coder];
if (self) {

[self sharedInitialization];

}
return self;
}

- (id)initWithRootViewController:(UIViewController *)rootViewController; { - (id)initWithRootViewController:(UIViewController *)rootViewController; {


if ((self = [super init])) { if ((self = [super init])) {
Expand Down

0 comments on commit dea7cf3

Please sign in to comment.