gpt4 book ai didi

ios - TableViewCell 自动高度问题

转载 作者:行者123 更新时间:2023-11-30 12:31:02 27 4
gpt4 key购买 nike

我正在编写一个 iOS 应用程序。用户输入电影搜索关键字,它会从 omdbapi.com 获取数据并在表格 View 中显示电影。问题是该 TableView 单元格未正确显示。

项目网址: project on onedrive

我尝试使用每种自动布局方法,但它不起作用。

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

}

最佳答案

您还需要设置 table 高度的估计方法。因此,将这些方法用于高度计算,并检查您的单元格约束。

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

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

希望这对您有帮助。

关于ios - TableViewCell 自动高度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43555758/

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