如何使第一个单元格可见?

问题描述

我有一个检测最后一个单元格的代码,但我很好奇现在如何检测 tableView 中的第一个单元格,因为在我的 tableView 中,并非所有单元格在 iphone 7 或更少的设备上都可见,这就是为什么我必须使用滚动方法

    func scrollViewDidScroll(_ scrollView: UIScrollView) {
    
    let contentOffsetMaxY: Float = Float(scrollView.contentOffset.y + scrollView.bounds.size.height)
    let contentHeight: Float = Float(scrollView.contentSize.height)
    let lastCellIsVisible = contentOffsetMaxY > contentHeight
    
    
    if lastCellIsVisible {
     //some action
    }
}

解决方法

您可以使用 tableView(_:willDisplay:forRowAt:) 个,共 UITableViewDelegate 个。

它会在单元格显示之前调用,并且会为每个单元格调用一次。

您的代码如下所示:


func viewDidLoad() {
  super.viewDidLoad()
  ...
  tableView.delegate = self
  ...
}

func tableView(_ tableView: UITableView,willDisplay cell: UITableViewCell,forRowAt indexPath: IndexPath) {
  if indexPath.row == 0 {
    // First cell is going to be displayed
  }
  if indexPath.row == tableView.numberOfRows(inSection: indexPath.section) - 1 {
    // Last cell is going to be displayed
  }
}