ios – UITableViewCell动态高度不适用于大小类

前端之家收集整理的这篇文章主要介绍了ios – UITableViewCell动态高度不适用于大小类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
设置UITableView的estimatedRowHeight和rowHeight会使表视图计算每个单元格的正确高度.在我使用大小类之前,它就像一个魅力.似乎所有计算都是针对Any / Any大小类进行的,稍后会应用更大的字体.结果,没有正确地计算单元的高度并且标签不适合.

这是我的代码

class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {

    @IBOutlet weak var tableView: UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()

        self.tableView.estimatedRowHeight = 50
        self.tableView.rowHeight = UITableViewAutomaticDimension
    }

    func tableView(tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
        return 3
    }

    func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("Reuse",forIndexPath: indexPath) as! MyTableViewCell
        println("Label font size: \(cell.myLabel.font)") // it prints (...)font-size: 11.00pt for all the size classes
        return cell
    }
}

布局看起来像这样:

而size类的用法是:

现在,当我在iPhone上打开应用程序时,一切看起来都像预期的那样.但是在iPad上,单元格没有正确调整大小.事实上,如果字体大小为11pt而不是40pt,则会调整大小以适应文本.

问题是:如何在应用大小类后强制执行计算?

我已经尝试过覆盖特征收集的技巧,如:https://stackoverflow.com/a/28514006中所示,但它不起作用.我的意思是,大小类已正确读取(常规/常规)但字体大小仍为11pt.

您可以从Github:https://github.com/darecki/TableViewTest下载这个简单的项目

截图:

> iPhone 4s:

> iPad 2:

>调用tableView.reloadData()后的iPad 2:

编辑:格式化,添加Github链接.

解决方法

在Interface Builder中设置标签上的首选最大宽度 – >尺寸检查员. 这解决了我的问题.还要确保行数为0.
原文链接:https://www.f2er.com/iOS/334287.html

猜你在找的iOS相关文章