在我的项目中,我有uicolelctionview
自定义单元格。在collectionView:CellForItemAtIndexPath
我得到自定义单元格
let cell = collectionView.dequeueReusableCellWithReuseIdentifier(reuseIdentifier, forIndexPath: indexPath) as! CustomCollectionCell
并添加此代码
cell.personImage.layer.cornerRadius=(cell.bounds.size.height-10)/2
cell.personImage.layer.borderWidth=3
cell.personImage.layer.masksToBounds=true
我希望得到这种类型的视图:
但一些细胞看起来像这样:
我必须 reloatData 才能获得当前的单元格视图。仍然无法理解为什么我会得到这个错误