无法使UITableViewAutomaticDimension正常工作

时间:2017-01-26 18:46:13

标签: swift2 snapkit

我有一个相当标准的UITableView,通过自定义单元填充。那个单元格现在只是一个图像和标签。对于我的生活,我不能让它重新调整它自己。

当我包含UITableViewAutomaticDimension时,除了错误的布局外,我还无法填充数据。

如果没有UITableViewAutomaticDimension,数据会正确显示。

上午使用SnapKit处理约束和Meteor / SwiftDDP来处理数据,但项目中还有另一个UITableView似乎正常工作

的ViewController

class CommentViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
    var commentTable:UITableView!
    var comments:MeteorCollection<Comment>!

    init() {
        super.init(nibName: nil, bundle: nil)
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    override func viewDidLoad() {
        super.viewDidLoad()
        comments = MeteorCollection<Comment>(name: "comments")

        createView()

        Meteor.subscribe("postsComments", params: [["postId": self.source!.id!]]) {}
    }

    func createView() {
        let contentTableView = UITableView(frame: content.frame)
        content.addSubview(contentTableView)
        contentTableView.backgroundColor = UIColor.clearColor()
        self.commentTable = contentTableView
        contentTableView.delegate = self
        contentTableView.dataSource = self

        contentTableView.snp_makeConstraints { (make) -> Void in
          make.top.equalTo(content)
          make.left.equalTo(content)
          make.right.equalTo(content)
          make.height.equalTo(content).inset(65)
        }

        contentTableView.rowHeight = UITableViewAutomaticDimension
        contentTableView.estimatedRowHeight = 350

    }
}

CommentTableViewDelegate.swift

import UIKit

extension CommentViewController {
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return self.comments.count
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier(CommentTableViewCell.reuseIdentifier, forIndexPath: indexPath) as UITableViewCell

        cell.setNeedsUpdateConstraints()
        cell.updateConstraintsIfNeeded()
        if let card = cell as? CommentTableViewCell {
            let item = self.comments.sorted[indexPath.row]
            card.populate(item)
        }

        return CommentTableViewCell()
    }

    func reloadTableView() {
        self.commentTable.reloadData()
    }
}

使用UITableViewAutomaticDimension 时出现乱码的示例 enter image description here

使用UITableViewAutomaticDimension时乱码的一个例子 enter image description here

2 个答案:

答案 0 :(得分:4)

这可能是由于细胞内部的约束不当造成的。请在表格视图单元格中正确添加约束,并从故事板的“属性”检查器部分设置UILable的这两个属性:

  • 行至0
  • 换行换行

或者您也可以从代码中设置这些属性:

 self.lblxyz.numberOfLines = 0
 self.lblxyz.lineBreakMode = .byWordWrapping

注意 - 不要修复UILable的高度。

希望它会帮助你...... :)

答案 1 :(得分:1)

我不确定它是否有效,但我最近遇到了同样的问题,我通过更改prepare-commit-msg来修复它。

请你试试一次: -

estimatedRowHeight

to,contentTableView.estimatedRowHeight = 350