繁体   English   中英

具有 uitableviewdiffabledatasource 的自调整单元格

[英]self sizing cell with uitableviewdiffabledatasource

我有一个详细的 ViewController,其单元格由自定义的 uitableviewdiffabledata 定义,如下所示:

{ (_, indexPath, item) -> UITableViewCell? in
            let color = UIColor(named: "blue")!
            if let _ = item as? TextFieldItem, let cell = tableView.dequeueReusableCell(withIdentifier: "textField", for: indexPath) as? TextFieldTableViewCell {
                cell.textField.text = recipe.wrappedValue.name
                cell.textField.placeholder = NSLocalizedString("name", comment: "")
                cell.selectionStyle = .none
                cell.textChanged = nameChanged
                cell.backgroundColor = color
                return cell
            } else if let imageItem = item as? ImageItem, let imageCell = tableView.dequeueReusableCell(withIdentifier: "image", for: indexPath) as? ImageTableViewCell {
                imageCell.setup(imageData: imageItem.imageData)
                return imageCell
            } else if let _ = item as? AmountItem, let amountCell = tableView.dequeueReusableCell(withIdentifier: "times", for: indexPath) as? AmountTableViewCell{
                amountCell.setUp(with: recipe.wrappedValue.timesText, format: formatAmount)
                amountCell.backgroundColor = color
                return amountCell
            } else if item is InfoItem {
                return  InfoTableViewCell(infoText: Binding(get: {
                    return recipe.wrappedValue.info
                }, set: updateInfo), reuseIdentifier: "info")
            } else if let stripItem = item as? InfoStripItem, let infoStripCell = tableView.dequeueReusableCell(withIdentifier: "infoStrip", for: indexPath) as? InfoStripTableViewCell {
                infoStripCell.setUpCell(for: stripItem)
                return infoStripCell
            } else if let stepItem = item as? StepItem {
                let stepCell = StepTableViewCell(style: .default, reuseIdentifier: "step")
                stepCell.setUpCell(for: stepItem.step)
                return stepCell
            } else if let detailItem = item as? DetailItem, let cell = tableView.dequeueReusableCell(withIdentifier: "detail", for: indexPath) as? DetailTableViewCell {
                let title = NSAttributedString(string: detailItem.text, attributes: [.foregroundColor : UIColor.label])
                cell.textLabel?.attributedText = title
                cell.accessoryType = .disclosureIndicator
                cell.backgroundColor = color
                return cell
            }
            return UITableViewCell()
        }

我想制作这样定义的 InfoTableViewCell:

class InfoTableViewCell: UITableViewCell {
    @Binding private var infoText: String
    
    private var textView = UITextView()

    init(infoText: Binding<String>, reuseIdentifier: String?) {
        self._infoText = infoText
        super.init(style: .default, reuseIdentifier: reuseIdentifier)
        setup()
    }
    
    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    private func setup() {
        self.addSubview(textView)
        textView.fillSuperview()
        
        
        textView.text = infoText
        textView.delegate = self
        
        textView.backgroundColor = UIColor(named: "blue")!
        textView.font = UIFont.preferredFont(forTextStyle: .body)
    }
    
}

extension InfoTableViewCell: UITextViewDelegate {
    
    func textViewDidChange(_ textView: UITextView) {
        self.infoText = textView.text
    }
    
}

我想让这个单元格根据 textField 中的文本调整大小。 关于如何做到这一点的任何提示? PS 我正在使用 LBTA 工具用 textField 填充单元格的内容。

根据我的经验,只需省略tableView(_:heightForRowAt:)表视图委托。 然后在创建单元格时,创建将单元格的顶部和底部绑定到内容的顶部和底部的约束。 然后细胞将增长或缩小以满足约束条件。

在您的自定义表格视图单元格 class 的init中:

textView.topAnchor.constraint(equalTo: self.topAnchor, constant: 8).isActive = true
textView.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: -8).isActive = true

不确定 LBTA 工具将如何影响此行为,因此这可能仅适用于 vanilla UIKit。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM