uitableView 选择跳过后, 跳回 颜色变化 问题

今天遇到这个问题  谁也因此没有满足这方面的需求   

今天会见 网上办理登机手续 未找到 好 我只能说自己的问题 

但 幸好,kai哥 就攻克了 !

就是在- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath中反选回来

例如以下代码:


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

{

    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    [self gotoPersonalDataHome:self.searchUserId];

}

原文地址:https://www.cnblogs.com/bhlsheji/p/5040966.html