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

如何取消TableViewCell的选中状态

时间:2014-10-26 11:32:06      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:des   style   io   使用   sp   on   cti   bs   ef   

在UITableView里面,选择了某一个cell以后,点击立刻取消该cell的选中状态,可以使用如下方法:

 

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

{

    //some functions

    ......

    // 取消选中状态

    [tableView deselectRowAtIndexPath:indexPath animated:NO]; 

}

 

如何取消TableViewCell的选中状态

标签:des   style   io   使用   sp   on   cti   bs   ef   

原文地址:http://www.cnblogs.com/CoderXSLee/p/4051465.html

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