我想知道是否有人知道延迟后取消选择表视图的方法?
我正在使用deselectRowAtIndexPath
方法。我只希望突出显示一秒钟,然后再取消选择它。
谢谢!
最佳答案
我能够使用[tableView deselectRowAtIndexPath:indexPath animated:YES];
做到这一点
另一种方法是:
[self performSelector:@selector(deselect:) withObject:self afterDelay:0.33];
然后创建调用
deselect
的方法deselectRowAtIndexPath