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

tableView中deselectRowAtIndexPath的作用

时间:2014-12-29 19:58:54      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
 {
     [tableView deselectRowAtIndexPath:indexPath animated:YES];
     // 不加此句时,在二级栏目点击返回时,此行会由选中状态慢慢变成非选中状态。
    // 加上此句,返回时直接就是非选中状态。
 }

tableView中deselectRowAtIndexPath的作用

标签:

原文地址:http://www.cnblogs.com/pjl111/p/4192223.html

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