如果我不隐藏分隔符,UI将如下所示: The normal status
但我需要做的是在tableview中隐藏分隔符视图的一部分。例如: What i want to display
我曾尝试设置[separatorinset],但它没有用。
答案 0 :(得分:1)
我已修复此问题以使用这些代码:
cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, FNDeviceWidth);//FNDeviceWidth,the cell's width
cell.layoutMargins = UIEdgeInsetsZero;
cell.preservesSuperviewLayoutMargins = NO