我有一个包含三个部分的UITableView。
failAtLaunch
的单元格
您可以在下面看到我如何配置单元格..
问题是该表给出了奇怪的行为。每当我在桌面视图中上下滚动时,细胞移入和移出视图,第2部分中的某些单元格会在其附属视图中获得UISwitch failAtLaunch
。
任何人都可以帮助我理解为什么会这样吗?
提前致谢!
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//....blablabla...
// Configure the cell...
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *theSound = [prefs objectForKey:@"pickedFailSound"];
NSUInteger index = [failSounds indexOfObject:theSound];
if (indexPath.section == 0){
failAtLaunch = [[[UISwitch alloc] initWithFrame:CGRectMake(200, 7, 100, 30)] autorelease];
[cell addSubview:failAtLaunch];
cell.accessoryView = failAtLaunch;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
if(![prefs boolForKey:@"failAtLaunch"]) {
[failAtLaunch setOn:NO animated:NO];
} else {
[failAtLaunch setOn:YES animated:NO];
}
[(UISwitch *)cell.accessoryView addTarget:self action:@selector(setIt) forControlEvents:UIControlEventValueChanged];
cell.textLabel.text = @"Instafail";
return cell;
} else if (indexPath.section == 1) {
NSString *cellTitle = [failSounds objectAtIndex:indexPath.row];
cell.textLabel.text = cellTitle;
if (indexPath.row == index) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
return cell;
} else {
cell = [tableView dequeueReusableCellWithIdentifier:@"buttonCell"];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"buttonCell"] autorelease];
}
cell.textLabel.text = @"Hold to record fail sound";
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(230.0f, 4.0f, 60.0f, 36.0f);
[btn setTitle:@"OK" forState:UIControlStateNormal];
[btn setTitle:@"OK" forState:UIControlStateSelected];
[btn addTarget:self action:@selector(recordAudio) forControlEvents:UIControlEventTouchDown];
[btn addTarget:self action:@selector(stop) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:btn];
return cell;
}
}
答案 0 :(得分:0)
这是你的等等等等。我认为您可能对所有3种类型的行使用相同的重用标识符,而不是在重用之前清除它们。 因此,当您实例化一个新的tableViewCell时,您需要切换部分并为每个部分指定唯一的标识符。 我通常做的是标记我添加到单元格的每个视图,其标记为“CLEAR_ME_OUT”,定义为一些大的任意数字。然后,当我重新使用一个单元格时,我遍历子视图并使用该标记removeFromSuperview所有单元格。这样就可以重新使用了。
答案 1 :(得分:0)
问题来自dequeueReusableCellWithIdentifier:为每种类型的单元格使用不同的静态字符串。