tableView 选中cell时,获取到当前cell

  // >> 找到当前选中的cell,设置选中时的cell背景色
    SideTableViewCell * cell = (SideTableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
    self.selectedCell = cell;
    cell.backgroundColor = [UIColor blueColor];
原文地址:https://www.cnblogs.com/code-Officer/p/5968657.html