UITableViewCell 取消选中的蓝色背景

方案一:

  [self.tableView setAllowsSelection:NO];

方案二:

    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];

原文地址:https://www.cnblogs.com/cocoajin/p/3141890.html