0

我有一个静态单元格(具有不同高度)的 TableView,我试图在加载时隐藏一个单元格。我通过使用heightForRowAtIndexPath并返回0要关闭的单元格来实现它,但是,对于该函数,我需要返回一个值..

override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
   if indexPath.section == 2 && indexPath.row == 5 {
       return 0
   }

   // here:

   return tableView.rowHeight  // changes default values of cells
   return UITableViewAutomaticDimension // changes too.

    }

我想返回任何高度单元格。

我为 obj-c 找到了这个,我觉得它会起作用,但我不确定..我无法翻译它..

[super tableView:tableView heightForRowAtIndexPath:indexPath];

保持细胞高度不变的方法是什么?我应该对所有内容进行硬编码吗?

4

1 回答 1

1

只需调用super实现:

return super.tableView(tableView, heightForRowAtIndexPath: indexPath)
于 2016-04-29T20:42:08.977 回答