gpt4 book ai didi

ios - 如何使用 heightForRowAtIndexPath 方法?

转载 作者:搜寻专家 更新时间:2023-10-31 08:09:36 25 4
gpt4 key购买 nike

我正在尝试在我的 UITableViewController 中使用 heightForRowAtIndexPath 方法。但是当我尝试覆盖该方法时,它说它不会覆盖其父类(super class)中的任何方法。

谷歌搜索让我找到了协议(protocol),这似乎可能是难题的一部分,但我仍在努力了解如何使用协议(protocol)来使用此方法。

如有任何帮助,我们将不胜感激。这是代码:(问题方法在最底部)

import UIKit
import Firebase

class FruitsTableViewController: UITableViewController {
let rootRef = FIRDatabase.database().reference()

override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 15
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "LabelCell", for: indexPath)

let busRef = rootRef.child("buses")
busRef.observeSingleEvent(of: .value, with: {(snapshot) in
if let snapshots = snapshot.children.allObjects as? [FIRDataSnapshot] {
let bus = snapshots[Int(indexPath.row)].key
let busval = snapshots[Int(indexPath.row)].value as! String
cell.textLabel?.text = "Bus \(bus) ------- \(busval)"
}
})

return cell
}

override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return "Section \(section)"
}

override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return 40.0
}
}

最佳答案

您可以设置静态高度:

override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
{
if indexPath.section == 0 {
return 50
} else {
return 120
}
}

或者使用自动尺寸,根据其内容自动调整每个单元格的大小:

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 
return UITableViewAutomaticDimension
}

关于ios - 如何使用 heightForRowAtIndexPath 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42289097/

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