我有ViewController
UITableView
。我选择一个单元格移动到另一个ViewController
,但是当我使用[self.navigationController popToRootViewControllerAnimated:NO];
弹出时,我选择的单元格仍然以蓝色突出显示。取消它的唯一方法是选择另一个单元格。如何在选择中清除突出显示的蓝色?
答案 0 :(得分:2)
在deselectRowAtIndexPath:
左右使用didSelectrowAtIndexPath
方法。
[tableView deselectRowAtIndexPath:indexPath animated:YES];