Xcode 7 iOS 9 UITableViewCell Separator Inset issue

后端 未结 4 1192
情深已故
情深已故 2020-12-12 15:29

This is not a question, rather a solution to the problem I faced.

In Xcode 7, when the application is run on iOS 9 on iPad devices, the UITableViewCell

4条回答
  •  一生所求
    2020-12-12 16:09

    I hope this is helpful.

    if #available(iOS 9.0, *) {
          myTableView.cellLayoutMarginsFollowReadableWidth = false
    }
    

提交回复
热议问题