tableView取消选中行的选中状态

来源:互联网 发布:人工智能 总结 编辑:程序博客网 时间:2024/05/16 11:48

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

    [tableView deselectRowAtIndexPath:indexPathanimated:YES];

}

0 0