【发布时间】:2018-07-05 16:59:14
【问题描述】:
我正在尝试在我的应用中实现 Pinterest 布局,我尝试了来自 raywenderlich 的教程。我的问题如何实现到 UICollectionView cellForItemAt 和 heightForPhotoAtIndexPath
这是我的代码:
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "GaleryCollection", for: indexPath) as! GaleryCollectionViewCell
let imgGalery = self.galery![indexPath.row]
if imgGalery.photo != nil {
cell.imageGalery.af_setImage(withURL: URL(string: imgGalery.photo!)!)
}
return cell
}
【问题讨论】:
标签: ios swift swift3 uicollectionview