UITableViewCell 超出显示

cell.clipsToBounds =NO;

cell.contentView.clipsToBounds =NO;

注意下面这两个,任选一个,主要解决超出显示的部分会被上个cell遮挡

cell.layer.zPosition= indexPath.row;

cell.backgroundColor = [UIColor clearColor];

view显示在最上层

view.layer.zPosition=999;

你可能感兴趣的:(UITableViewCell 超出显示)