UITableView一次只检查一行 [英] UITableView Checkmark ONLY ONE Row at a Time

查看:75
本文介绍了UITableView一次只检查一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你认为这很容易。使用此代码,我可以检查表中的多行,但我想要的是一次只检查一行。如果用户选择不同的行,那么我希望旧行只是自动取消选中。不知道该怎么做。这是我的代码:

You'd think this would be easy. With this code, I can check multiple rows in a table but what I WANT is to only have one row checked at a time. If a user selects a different row, then I want the old row to simply AUTOMATICALLY uncheck. Don't know how to do that. Here's my code:

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

[tableView deselectRowAtIndexPath:indexPath animated:YES];


UITableViewCell *theCell = [tableView cellForRowAtIndexPath:indexPath];

if (theCell.accessoryType == UITableViewCellAccessoryNone) {
    theCell.accessoryType = UITableViewCellAccessoryCheckmark;
    }

    else if (theCell.accessoryType == UITableViewCellAccessoryCheckmark) {
    theCell.accessoryType = UITableViewCellAccessoryNone;
    }
}

感谢您提供的任何帮助!

Thanks for any help you can lend!

推荐答案

最好的方法是在cellForRowAtIndexPath中设置附件类型,并使用didSelectRowAtIndexPath仅记录应该的路径strong>被选中,然后调用reloadData。

The best way is to set the accessory type in cellForRowAtIndexPath and use didSelectRowAtIndexPath to only record which path should be selected and then call reloadData.

这篇关于UITableView一次只检查一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆