19
Cómo configurar UICollectionViewCell Width y Height mediante programación
Estoy tratando de implementar un CollectionView. Cuando utilizo Autolayout, mis celdas no cambiarán el tamaño, sino su alineación. Ahora prefiero cambiar sus tamaños a, por ejemplo, //var size = CGSize(width: self.view.frame.width/10, height: self.view.frame.width/10) Intenté ponerme en mi CellForItemAtIndexPath collectionCell.size = size aunque no funcionó. ¿Hay una manera de lograr esto? …