1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 2 { 3 [tableView deselectRowAtIndexPath:indexPath animated:YES]; 4 // 不加此句时,在二级栏目点击返回时,此行会由选中状态慢慢变成非选中状态。 5 // 加上此句,返回时直接就是非选中状态。 6 }
1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 2 { 3 [tableView deselectRowAtIndexPath:indexPath animated:YES]; 4 // 不加此句时,在二级栏目点击返回时,此行会由选中状态慢慢变成非选中状态。 5 // 加上此句,返回时直接就是非选中状态。 6 }
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。