在UICollectionViewCell类中获取IndexPath值

时间:2016-10-24 07:47:33

标签: ios swift uicollectionview nsindexpath

我有一个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值,以便检查当前单元格的节和行。

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

1 个答案:

答案 0 :(得分:1)

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
}