为了初始化具有 xib 的视图,我使用initWithCoder
函数。但是如果我需要使用自定义参数初始化 xib 怎么办。
我需要这样的东西:
- (id)initWithCoder:(NSCoder *)aDecoder
andTitle:(NSString *)titleString
{
self = [super initWithCoder:aDecoder];
if (self) {
self.titleLabel = titleString;
}
return self;
}
我什么时候调用它?之后awakeFromNib
?