MainViewController初始化

时间:2011-08-08 07:07:48

标签: iphone objective-c

我已经设置了一个实用程序,我发现MainViewController的init方法没有自动调用。是否有一些其他方法由XCode自动设置初始化?或者如果我必须添加它,我会在哪里添加它?我只是想从IBOutlet方法手动调用init,但我更希望在首次初始化视图时完成初始化。

2 个答案:

答案 0 :(得分:0)

不知道你要去哪里但是(生成的).xib文件是使用withCoder init调用的。

- (id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self) 
    {
        //self implementation
    }
    return self;

}

答案 1 :(得分:0)

请参阅Xcode中的实用程序模板。 并检查这个名为..的方法。

- (IBAction)done:(id)sender
{
    [self.delegate flipsideViewControllerDidFinish:self];
}

检查..