在选择

时间:2016-12-03 12:03:11

标签: ios swift uicollectionview uicollectionviewlayout

基本上我想在点击时缩放UICollectionViewCell。

我试图解雇这样的转变:

    self.showPickerForIP = indexPath
            UIView.animate(withDuration: 0.2, animations: { 
                self.collView.reloadData()

            })

大小管理如下:

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    if indexPath == showPickerForIP{
        return CGSize(width: 320, height: 400)
    }
    else{
        return CGSize(width: 150, height: 150)
    }
}

我有两个问题:

1。单元格的格式错误(如图所示)

2。它没有动画转换

转型前: enter image description here

应该如何看待: enter image description here

它实际上是这样的: enter image description here

0 个答案:

没有答案