如何在tableView中隐藏indexPath处的分隔符?这意味着,删除特定的分隔符,而不是所有的分隔符

How can I hide the separator at indexPath in tableView?It means ,remove specific separator,not all separators

如果我不隐藏分隔符,UI 将如下所示: The normal status

但我需要做的是将 tableview.Such 中的分隔符视图的一部分隐藏为: What i want to display

我曾尝试设置 [separatorinset],但没有成功。

我使用这些代码解决了这个问题:

cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, FNDeviceWidth);//FNDeviceWidth,the cell's width cell.layoutMargins = UIEdgeInsetsZero; cell.preservesSuperviewLayoutMargins = NO