UITableView 一次只勾选一行

UITableView Checkmark ONLY ONE Row at a Time(UITableView 一次只勾选一行)
本文介绍了UITableView 一次只勾选一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

使用此代码,我可以检查表中的多行.

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. 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;
    }
}

如果用户选择了不同的行,那么我希望旧行简单地自动取消选中.不知道该怎么做.

If a user selects a different row, then I want the old row to simply automatically uncheck. Don't know how to do that.

推荐答案

最好的方法是在cellForRowAtIndexPath中设置附件类型.

The best way is to set the accessory type in cellForRowAtIndexPath.

使用didSelectRowAtIndexPath只记录应该选择哪条路径,然后调用reloadData.

Use didSelectRowAtIndexPath to only record which path should be selected and then call reloadData.

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

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

问题描述:H5页面,ios点击input框,输入内容时,页面会自动放大,且失焦后需手动放小,要怎么处理呢? 解决办法 meta name="viewport" content="width=device-width, initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" width=device
AWS DynamoDB Batch Get Request - iOS(AWS DynamoDB 批量获取请求 - iOS)
Querying DynamoDB on non-key attributes(在非关键属性上查询 DynamoDB)
DynamoDB auto incremented ID amp; server time (iOS SDK)(DynamoDB 自动递增 ID amp;服务器时间(iOS SDK))
Where to find a clear explanation about swift alert (UIAlertController)?(哪里可以找到关于 swift alert (UIAlertController) 的清晰解释?)
Swift alert view with OK and Cancel: which button tapped?(带有 OK 和 Cancel 的 Swift 警报视图:点击了哪个按钮?)