- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
//My custom code for the view which I will add to the contentView
}
return self;
}
当我实例化这个类的对象并在数据源中分配 - 委托时,那么我使用的“样式”是否相同? (UITableViewCellStyleDefault等。)
答案 0 :(得分:1)
如果您需要的所有内容都添加到contentView中,并且您不使用textLabel,detailTextLabel等。 比它是一样的,是的。你也可以在
中传递你需要的风格 self = [initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier]; // The style is just an example...
因此,外部的给定样式将被忽略。 ; - )