我正在使用加载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/

10-14 20:54