码迷,mamicode.com
首页 > 其他好文 > 详细

uitableviewcell选中打勾

时间:2016-07-20 10:21:21      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

单元格选中后,打勾。再选其他,之前的勾取消,新的打勾。

代码如下(不加代码高亮了吧):

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {

NSIndexPath *oldIndex = [tableView indexPathForSelectedRow];

[tableView cellForRowAtIndexPath:oldIndex].accessoryType = UITableViewCellAccessoryNone;

[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;

return indexPath;

}

uitableviewcell选中打勾

标签:

原文地址:http://www.cnblogs.com/fantasy940155655/p/5687148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!