OStack程序员社区-中国程序员成长平台

标题: ios - 如何为 UI TableView 的 x 行定义和拉伸(stretch)行高? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 02:43
标题: ios - 如何为 UI TableView 的 x 行定义和拉伸(stretch)行高?

我正在使用一个 UITableView,它只有并且永远只有 10 行中的值。我想设置 10 行的高度,这样无论使用什么设备,它都会填充 View Controller 。

在 iPhone 4 上显示 10 行。 iPhone 5 12 排和 iPhone 7 14 排。如何设置行高,使其无论是什么设备都只显示 10 行?



Best Answer-推荐答案


尝试添加:

- (CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)indexPath
{
    return self.view.bounds.size.height/10.0;
}

关于ios - 如何为 UI TableView 的 x 行定义和拉伸(stretch)行高?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26435883/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4