使用initWithCoder初始化UITableViewCell是否正确?

时间:2010-09-10 18:58:44

标签: iphone objective-c uitableview nib

我正在使用

加载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;
}

这是对的吗?这是你解决从笔尖加载的单元格初始化的方式吗?

由于

1 个答案:

答案 0 :(得分:4)

那,或awakeFromNib