Swift UicollectionViewCell Wie man sich weißt, wenn man außerhalb des Bildschirms ist

func collectionView(_ collectionView: UICollectionView,
                 didEndDisplaying cell: UICollectionViewCell,
                   forItemAt indexPath: IndexPath) {
    if let cell = collectionView.cellForItem(at: indexPath) {
      // Do something
    }
  }
TheKrisinator