//aDecoder解析器,将xib解析出来,可以通过alloc、initWithCoder的方法将xib文件加载出来,这个方法比awakeFromNib先调用
-(instancetype)initWithCoder:(NSCoder *)aDecoder{
self = [super initWithCoder:aDecoder];
if (self) {
}
return self;
}
-(void)awakeFromNib{
}
时间: 2024-10-09 14:26:11