@implementation NVController
//Plain Init method
-(id)init
{
self=[super init];
if(self)
{
}
return self;
}
//CustomInit Method
-(id)initWithRootViewController:(UIViewController *)rootViewController
{
self=[super initWithRootViewController:rootViewController];
if(self)`enter code here`
{
}
return self;
}
@end
NVController *instance=[[NVController alloc] initWithRootViewController:nil];
ここで上記の場合、私はのみを呼び出すのでinitWithRootViwController
、別のコンストラクターinit
も呼び出されます。どんな助けでもいただければ幸いです。