2011-02-08 51 views
0
- (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等)繼承UITableViewCell

回答

1

如果您需要的所有內容都添加到contentView中,並且您不使用textLabel,detailTextLabel等。 比起來是一樣的,是的。你也可以通過你的需要風格

self = [initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier]; // The style is just an example...

所以,從外部給定的風格將被忽略。 ;-)