IOS UITableView检查一个单元格
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS UITableView检查一个单元格相关的知识,希望对你有一定的参考价值。
Only allows one table view cell to be checked.
if(_lastIndex != nil) { UITableViewCell *oldCell = [tableView cellForRowAtIndexPath:_lastIndex]; if(oldCell.accessoryType == UITableViewCellAccessoryCheckmark) { oldCell.accessoryType = UITableViewCellAccessoryNone; } } UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath]; if(newCell.accessoryType == UITableViewCellAccessoryNone) { newCell.accessoryType = UITableViewCellAccessoryCheckmark; } _lastIndex = indexPath; [tableView deselectRowAtIndexPath:indexPath animated:YES]; }
以上是关于IOS UITableView检查一个单元格的主要内容,如果未能解决你的问题,请参考以下文章