tableview取消选中某一行
//取消选中 - (void)deselect{ [_tableView deselectRowAtIndexPath:[_tableView indexPathForSelectedRow] animated:YES]; } //在点击某一行中添加 [self performSelector:@selector(deselect) withObject:nil afterDelay:0.5f];
//取消选中 - (void)deselect{ [_tableView deselectRowAtIndexPath:[_tableView indexPathForSelectedRow] animated:YES]; } //在点击某一行中添加 [self performSelector:@selector(deselect) withObject:nil afterDelay:0.5f];