我正在使用一个 UITableView,它只有并且永远只有 10 行中的值。我想设置 10 行的高度,这样无论使用什么设备,它都会填充 View Controller 。
在 iPhone 4 上显示 10 行。 iPhone 5 12 排和 iPhone 7 14 排。如何设置行高,使其无论是什么设备都只显示 10 行?
Best Answer-推荐答案 strong>
尝试添加:
- (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/
|