gpt4 book ai didi

ios - 获取 UICollectionViewCell 类中的 IndexPath 值

转载 作者:行者123 更新时间:2023-11-28 16:06:24 26 4
gpt4 key购买 nike

我有一个 UiCollectionViewCell 类如下:

class DateCollectionViewCell: UICollectionViewCell {

let dateLabel = UILabel()
override func awakeFromNib() {
super.awakeFromNib()

dateLabel.frame = CGRectMake(0, 5, CGRectGetWidth(self.frame), CGRectGetHeight(self.frame))
dateLabel.textAlignment = .Left
dateLabel.font = UIFont(name: "HelveticaNeue", size: 13)

dateLabel.adjustsFontSizeToFitWidth = false
self.contentView.addSubview(dateLabel)

}
}

我只想更改第一行第一列单元格标签的 Y 位置,其余单元格标签保持不变。为此,我需要 IndexPath 值,以便我可以检查当前单元格的部分和行。

我怎样才能得到这个??有没有其他方法可以做我想得到的东西???

最佳答案

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

let cell : DateCollectionViewCell = collectionView .dequeueReusableCellWithReuseIdentifier(CellIdentifier, forIndexPath: indexPath) as! DateCollectionViewCell

if indexPath.section == 0 && indexPath.row == 0 {
// do your custom changes for the cell
}

return cell // your default cell
}

关于ios - 获取 UICollectionViewCell 类中的 IndexPath 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40213167/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com