使用故事板更改 UITableView 单元格的高度
Changing UITableView Cell's Height by using storyboard
我在 macOS Catalina 上使用 Swift5 和 Xcode 11.4.1。
main.storyboard
正如您在这里看到的,我选择了表格视图单元格,转到尺寸检查器并将高度更改为 100,然后按回车键。
它在故事板上成功更改为 100 高度但是当我 运行 这个东西时,
模拟器截图
看起来像这样,上面的图像 link。
高度设置为 44 而不是 100。
将此方法添加到符合您 UITableView
的 delegate
的 class 以更改 tableView 的高度。
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
我在 macOS Catalina 上使用 Swift5 和 Xcode 11.4.1。
main.storyboard
正如您在这里看到的,我选择了表格视图单元格,转到尺寸检查器并将高度更改为 100,然后按回车键。 它在故事板上成功更改为 100 高度但是当我 运行 这个东西时,
模拟器截图
看起来像这样,上面的图像 link。 高度设置为 44 而不是 100。
将此方法添加到符合您 UITableView
的 delegate
的 class 以更改 tableView 的高度。
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}