今天遇见过这个问题 以前都没这方面需求所以没有遇见
今天遇见了 网上查了 没有查到 好吧 只能说自己的问题
但是 还好kai哥到 一句话就解决了 !
就是在- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath中反选回来
如下代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
[self gotoPersonalDataHome:self.searchUserId];
}
uitableView 选择跳转后 再跳回来 颜色不变 问题,布布扣,bubuko.com
uitableView 选择跳转后 再跳回来 颜色不变 问题
原文地址:http://blog.csdn.net/u010486174/article/details/38541517