在集合视图中找到中间单元格并更改其内容

find middle cell in a collection view and change its content

我的目标是在中间单元格中包含全文,在其他单元格中包含截断文本,但是随着中间单元格的更改,这种样式不应改变(意味着中间一个全文和其他单元格被截断)。

预设:在单元格中带有标签的水平滚动集合视图中无限滚动。

我有 3 个单元格,它们应该看起来像这样 [1D]---[1 天]---[1D]

您可以这样做来找到中间的单元格:

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell:UICollectionViewCell = collectionView.dequeueReusableCell(withReuseIdentifier: "CELL_ID", for: indexPath)

    let center = self.view.convert(collectionView.center, to: collectionView)
    let index = collectionView.indexPathForItem(at: center)

    if (indexPath == index) {
        // truncated text
    } else {
        // don't truncated text
    }

    return cell
}