Uitableview对于iOS7.1来说很奇怪

时间:2015-06-29 11:36:33

标签: ios objective-c uitableview

附加屏幕截图以便更好地理解。 在iOS 8.3中,它看起来像预期enter image description here

并且在iOs7.1中它从左侧和右侧删除空间(我不知道是否删除了TableView问题的UITableviwcell问题)。

enter image description here

我在网上搜索但无法找到解决方案。 伙计们有什么建议吗?

1 个答案:

答案 0 :(得分:0)

  1. 增加图像单元格的x坐标,如屏幕截图所示。
  2. 在情节提要中选择tableView,选择separator insets选项custom并减少"左"从15到0。
  3. 在cellForRowAtIndexPath

    中添加以下代码行

    if([UIDevice currentDevice] .systemVersion.floatValue> = 8.0f)

    {

     cell.layoutMargins = UIEdgeInsetsZero;
    
     cell.preservesSuperviewLayoutMargins = NO;
    

    }