gpt4 book ai didi

ios - 运行时的动态节标题高度

转载 作者:行者123 更新时间:2023-12-01 21:35:18 25 4
gpt4 key购买 nike

我有 UITableView在带有节标题的 View Controller 中,在标题中,我有一个 UITextView禁用滚动并固定所有 UITextView边缘到它的 super View 。 enter image description here
这是自动高度更改的代码

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
guard let view = tableView.dequeueReusableHeaderFooterView(withIdentifier: "CreatePostHeaderView") as? CreatePostHeaderView else {
return nil
}

return view
}

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return UITableView.automaticDimension
}
并使用此代码设置估计的高度
 tableView.estimatedSectionHeaderHeight = 75
但是在运行时 UITextView的文本超过 75 的高度,无论 UITextView 内容如何,​​它都不会改变。那么,我是否需要添加任何内容以确保表格部分标题高度根据 UITextView 更改?内容?我在这里错过了什么吗?

最佳答案

当执行一些改变单元格高度的 Action 时(包括页眉/页脚单元格),你必须通知表格 View 高度已经改变。
这通常通过以下任一方式完成:

tableView.beginUpdates()
tableView.endUpdates()
或者:
tableView.performBatchUpdates(_:completion:)
在这种情况下,您希望在 TextView 中的文本发生更改时调用它——通过“回调”闭包轻松完成。
这是使用 UITextView 的示例在可重复使用的 UITableViewHeaderFooterView .
这将适用于从 XIB 加载复杂 View ,但由于此 View 很简单(仅包含 UITextView ),我们将全部从代码中完成。此示例使用 3 个部分,每个部分有 12 行(默认表格 View 单元格)。
一、 TableView Controller 类——没有 @IBOutlet@IBAction连接,所以只需创建一个新的 UITableViewController并将其自定义类设置为 MyTestSectionHeaderTableViewController :
class MyTestSectionHeaderTableViewController: UITableViewController {

var myHeaderData: [String] = [
"Section 0",
"Section 1",
"Section 2",
]

override func viewDidLoad() {
super.viewDidLoad()

tableView.rowHeight = 50

tableView.keyboardDismissMode = .onDrag

tableView.sectionHeaderHeight = UITableView.automaticDimension
tableView.estimatedSectionHeaderHeight = 75

tableView.register(UITableViewCell.self, forCellReuseIdentifier: "defCell")
tableView.register(MySectionHeaderView.self, forHeaderFooterViewReuseIdentifier: MySectionHeaderView.reuseIdentifier)
}

override func numberOfSections(in tableView: UITableView) -> Int {
return myHeaderData.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 12
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let c = tableView.dequeueReusableCell(withIdentifier: "defCell", for: indexPath)
c.textLabel?.text = "\(indexPath)"
return c
}
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {

let v = tableView.dequeueReusableHeaderFooterView(withIdentifier: MySectionHeaderView.reuseIdentifier) as! MySectionHeaderView

v.myTextView.text = myHeaderData[section]

v.textChangedCallback = { txt in
self.myHeaderData[section] = txt
tableView.performBatchUpdates(nil, completion: nil)
}

return v

}

}
这是 UITableViewHeaderFooterView类(class)。注意需要符合 UITextViewDelegate所以我们可以告诉 Controller 文本已经改变(所以它可以在需要时更新高度),我们将新编辑的文本传回以更新我们的数据源:
class MySectionHeaderView: UITableViewHeaderFooterView, UITextViewDelegate {
static let reuseIdentifier: String = String(describing: self)

var myTextView: UITextView = {
let v = UITextView()
v.isScrollEnabled = false
return v
}()

var textChangedCallback: ((String) -> ())?

override init(reuseIdentifier: String?) {
super.init(reuseIdentifier: reuseIdentifier)
commonInit()
}

required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}

func commonInit() -> Void {

contentView.addSubview(myTextView)

myTextView.translatesAutoresizingMaskIntoConstraints = false

let g = contentView.layoutMarginsGuide

NSLayoutConstraint.activate([
myTextView.topAnchor.constraint(equalTo: g.topAnchor),
myTextView.leadingAnchor.constraint(equalTo: g.leadingAnchor),
myTextView.trailingAnchor.constraint(equalTo: g.trailingAnchor),
myTextView.bottomAnchor.constraint(equalTo: g.bottomAnchor)
])

myTextView.delegate = self
}

func textViewDidChange(_ textView: UITextView) {
guard let str = textView.text else {
return
}
textChangedCallback?(str)
}

}
结果:
enter image description here

关于ios - 运行时的动态节标题高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62758634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com