UITableView Checkmark ONLY ONE Row at a Time(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 一次只勾选一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UITableView 一次只勾选一行
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01