我有一个 UITableViewCell
里面只包含一个标签。标签被限制在单元格的所有边距(顶部、底部、尾随和前导)。它是一个多行标签(lines = 0)并且有一些静态文本,它们将在 iPhone X 的屏幕上以横向和纵向占据多行。
这是 screenshot IB 的约束。
代码中的行数设置为 30。(足够的单元格始终占据屏幕)
我已经在一个新项目中实现了上述所有内容。大部分是在 IB 上完成的,UITableViewController
子类只包含两个方法,numberOfRowsInSection
和 cellForRowAt indexPath
。该项目是在 Xcode 9 上使用 Swift 4 创建的,并且设备在 iOS 11.2 上运行。
这是 UITableViewController
子类的代码
class ViewController: UITableViewController {
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 30
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
return cell
}
}
VC 首次启动时,所有单元格的大小都已正确调整。在将设备旋转为横向时,单元格会按预期调整大小。现在,当我将设备转回纵向时,单元格占据的高度超出了应有的高度。
这只发生在 iPhone X 上。这些单元格在所有其他 iPhone 上都按预期布局。
此外,我的任何旧项目(使用 Xcode 8 创建)都不会发生这种情况。
After rotating to landscape and back
我一直在尝试复制旧项目中的所有属性,但它的大小仍然不正确。
任何意见将不胜感激... 谢谢!
编辑:
正如 Brandon 所指出的,它仅在 UITableViewController
嵌入到 UINavigationController
时发生。嵌入在 UINavigationController
中的 UIViewController
中的 UITableView
显示正确的行为。 UINavigationController
之外的 UITableViewController
也按预期运行。
嗯..我能够 100% 的重现这个..这非常奇怪,因为如果 UITableViewController
没有嵌入到 UINavigationController
中,那么一切正常..它嵌入的第二个,它表现出您帖子中显示的行为..
为了修复它,我做了:
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
self.tableView.reloadRows(at: self.tableView.indexPathsForVisibleRows!, with: .automatic)
}
它可以工作,但始终不理想地重新加载。. 还没有找到另一个解决方案.. 到目前为止,它只发生在 UINavigationController
中嵌入的 UITableViewController
>.. 嵌入在 UINavigationController
中的 UIViewController
内的 UITableView
不会发生这种情况。它非常特定于 Table Controller。
这对我来说似乎是一个错误。我检查了几乎所有 Storyboard 参数,但没有找到任何解决方案。
关于ios - UITableViewCell 在运行 iOS 11 的 iPhone X 上无法正确调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48141255/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |