我有一個自定義單元格的tableview控制器。對於每種類型的細胞,我都在故事板和課堂上創建了一個原型細胞。Tableview和自定義單元格不可預知的行爲
這裏的小區中的一個:
細胞具有圓形按鈕包含一個數字。
我試圖修改數字的值在我的cellForRowAtIndexPath方法是這樣的:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row == 0) {
TrackMilstoneCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"TrackMilstoneCell"];
if (cell == nil) {
cell = [[TrackMilstoneCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"TrackMilstoneCell"];
}
cell.backgroundColor = cell.contentView.backgroundColor;
cell.milestoneNumber.backgroundColor = UIColorFromRGB(0xA875E1);
[cell.milestoneNumber.titleLabel setText:@"2"];
return cell;
} ...
但是,我得到一個非常不可預知的行爲。每當tableview重新加載,我有時會得到1(故事板中的默認值),有時2(這是我想要的)。
這是我的(TrackMilstoneCell)類的代碼:
#import "TrackMilstoneCell.h"
@implementation TrackMilstoneCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
}
-(void)layoutSubviews
{
[self viewSetup];
}
-(void)viewSetup
{
self.milestoneNumber.layer.masksToBounds = NO;
self.milestoneNumber.layer.borderColor = [UIColor whiteColor].CGColor;
self.milestoneNumber.layer.borderWidth = 4;
self.milestoneNumber.layer.cornerRadius = self.milestoneNumber.bounds.size.width/2.0;
}
- (void)awakeFromNib
{
// Initialization code
[super awakeFromNib];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
這是因爲重新使用單元格,您需要添加完整的'cellForRowAtIndexPath'方法。 –
cellForRowAtIndexPath的else部分在哪裏?你確定那個單元格的行號是0嗎? – Windindi