1

我有一个相当标准的 UITableView,它通过自定义单元格填充。该单元格目前只是一个图像和一个标签。对于我的一生,我不能让它自行调整大小。

当我包含 UITableViewAutomaticDimension 时,除了不正确的布局之外,我失去了填充数据的能力。

没有 UITableViewAutomaticDimension,数据显示正常。

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

视图控制器

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 时出现乱码的示例在此处输入图像描述

使用 UITableViewAutomaticDimension 时出现乱码的示例 在此处输入图像描述

4

2 回答 2

4

这可能是由于单元格内的不当约束。请在表格视图单元格中正确添加约束,并从情节提要的属性检查器部分设置 UILable 的这两个属性:

  • 行到 0
  • 换行换行

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

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

注意 - 不要固定 UILable 的高度。

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

于 2017-02-01T11:18:02.213 回答
1

我不确定它是否有效,但是我最近遇到了同样的问题,我通过更改estimatedRowHeight.

您可以尝试一次吗:-

contentTableView.estimatedRowHeight = 350

至,contentTableView.estimatedRowHeight = 160

于 2017-01-26T19:59:38.433 回答