我的目标是在中间单元格中使用全文,在其他单元格中截断文本,但是随着中间单元格的更改,这种样式不应改变(意味着中间一个全文,其他全文被截断(。
预设:在水平滚动的集合视图中无限滚动,单元格中带有标签。
我有 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
}