gpt4 book ai didi

iphone - 一次仅允许有一个 UITableViewCell 附件复选标记

转载 作者:行者123 更新时间:2023-12-03 19:39:47 25 4
gpt4 key购买 nike

我有一个表格 View ,其中一个部分包含用户可以“选择”的声音列表。只有当前选定的声音才应显示 UITableViewCellAccessoryCheckmark。基本上我已经成功了。然而,当例如底部单元格被选中,我向上滚动表格 View (使选中的单元格从 View 中消失),然后我检查另一个单元格,对底部( View 外)单元格的检查不会被删除。有谁知道这是为什么吗?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
static NSString *TheOtherOne = @"OtherCell";
static NSString *MiddleCell = @"MiddleCell";



// Configure the cell...

NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *theSound = [prefs objectForKey:@"pickedFailSound"];
NSUInteger index = [failSounds indexOfObject:theSound];


if (indexPath.section == 0){

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}


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";
cell.detailTextLabel.text = @"Fail at Laucnh";

return cell;

} else if (indexPath.section == 1) {

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MiddleCell];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MiddleCell] autorelease];
}

NSString *cellTitle = [failSounds objectAtIndex:indexPath.row];
cell.textLabel.text = cellTitle;

if (indexPath.row == index) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}



if ([cellTitle isEqualToString:@"Your Fail Sound"]){

NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
if(![prefs boolForKey:@"customSoundAvailable"]) {

cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.userInteractionEnabled = NO;
cell.textLabel.textColor = [UIColor grayColor];
cell.detailTextLabel.text = @"Record a Custom Failsound First";
}
}

return cell;

} else {

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:TheOtherOne];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:TheOtherOne] 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;

}
}

还有:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{


[tableView deselectRowAtIndexPath:indexPath animated:YES];

NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *theSound = [prefs objectForKey:@"pickedFailSound"];
NSUInteger index = [failSounds indexOfObject:theSound];

//NSLog(@"The index is: %@", index);

if (indexPath.section == 1){


NSIndexPath *oldIndexPath = [NSIndexPath indexPathForRow:index inSection:1];

NSLog(@"Oldindexpath is: %@", oldIndexPath);
UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];


if (newCell.accessoryType == UITableViewCellAccessoryNone) {

newCell.accessoryType = UITableViewCellAccessoryCheckmark;
}

UITableViewCell *oldCell = [tableView cellForRowAtIndexPath:oldIndexPath];


if (oldCell != newCell){

if (oldCell.accessoryType == UITableViewCellAccessoryCheckmark) {

oldCell.accessoryType = UITableViewCellAccessoryNone;
}
}



NSString *pickedSound = [failSounds objectAtIndex:indexPath.row];
NSLog(@"Picked sound is %@", pickedSound);
[prefs setObject:pickedSound forKey:@"pickedFailSound"];
[prefs synchronize];

[self performSelector:@selector(loadSound) withObject:nil];
[failSound play];



}

}

最佳答案

您不记得重置出队单元的附件类型。

这应该可以解决你的问题;

  cell.accessoryType = UITableViewCellAccessoryNone;

if (indexPath.row == index) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}

方便的提示:您可能会发现使用 switch(indexPath.section) 而不是大量 if ... elseif ... else 结构很有用。虽然现在只需要 2 个部分就可以了,但我发现使用 switch 可以更轻松地扩大部分数量,并且还可以在精神上更轻松地阅读代码,因为您经常将 if .. else 结构用于其他用途- 使用不同的语法有助于更清楚地了解测试的用途。

关于iphone - 一次仅允许有一个 UITableViewCell 附件复选标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5677218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com