如何让3行全景如何UITableViewCell占据整个屏幕?

时间:2016-11-15 18:55:08

标签: ios swift storyboard

我从nib(xib)tableviewcell加载单元格

Integer

我花了很长时间来解决这个问题,但我找不到任何解决方案。

我需要显示3行tableView,这三行必须占用我的屏幕。目前,它显示了三行,但还剩下一些额外的空白区域,我想占用这些行。

1

以上是我获得的屏幕。下面是我想要实现的设计。

2

1 个答案:

答案 0 :(得分:0)

使用UITableViewDelegate的以下功能:

func tableView(tableView: UITableView, estimatedHeightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return tableView.frame.height/3
}

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return tableView.frame.height/3
}