基本上我想在点击时缩放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。它没有动画转换