UITableView

 

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

 {

     [tableView deselectRowAtIndexPath:indexPath animated:YES];

     // 不加此句时,在二级栏目点击返回时,此行会由选中状态慢慢变成非选中状态。

     // 加上此句,返回时直接就是非选中状态。

 }

posted on 2016-02-01 18:30  AN_绝非儿戏  阅读(117)  评论(0)    收藏  举报

导航