Questions tagged «ios9»

iOS 9是Apple iOS移动操作系统的第九个版本。它是在2015年6月8日的苹果全球开发者大会(WWDC)上宣布的。

4
Xcode 7 iOS 9 UITableViewCell分隔符插入问题
这不是问题,而是我所面临问题的解决方案。 在Xcode 7中,当该应用程序在iPad设备上的iOS 9上运行时,UITableViewCell在的左侧留有一些空白UITableView。将设备旋转到地面会增加边距。 我找到的解决方案是: 设定cellLayoutMarginsFollowReadableWidth为NO。 self.tbl_Name.cellLayoutMarginsFollowReadableWidth = NO; 此属性仅在iOS 9中可用。因此,您必须设置条件以检查iOS版本,否则它将崩溃。 if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_8_1) { self.tbl_Name.cellLayoutMarginsFollowReadableWidth = NO; }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.