附加屏幕截图以便更好地理解。 在iOS 8.3中,它看起来像预期
并且在iOs7.1中它从左侧和右侧删除空间(我不知道是否删除了TableView问题的UITableviwcell问题)。
我在网上搜索但无法找到解决方案。 伙计们有什么建议吗?
答案 0 :(得分:0)
separator insets
选项custom
并减少"左"从15到0。在cellForRowAtIndexPath
中添加以下代码行if([UIDevice currentDevice] .systemVersion.floatValue> = 8.0f)
{
cell.layoutMargins = UIEdgeInsetsZero;
cell.preservesSuperviewLayoutMargins = NO;
}