我正在使用加载UITableViewCell
[[NSBundle mainBundle] loadNibNamed:@"BlogCell" owner:self options:nil];
cell = blogCell;
self.blogCell = nil;
其中
blogCell
是BlogCell.xib的出口实际的UITableViewCell是BlogCell类型,它是UITableViewCell的子类。
在我的BlogCell类中,我正在使用
-(id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
//initialisation of some cell properties here
return self;
}
它是否正确?这是您处理从笔尖加载的单元格初始化的方法吗?
谢谢
最佳答案
那,或者在awakeFromNib
中。
关于iphone - 使用initWithCoder初始化UITableViewCell是否正确?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3687518/