1
任何人都可以給我一個正確的方向,如何在iOS中創建自定義的UICollectionview單元格。我使用Objective C創建了一個應用程序,但使用Swift我無法做到。當我試圖運行我的申請,我收到以下錯誤: 「致命錯誤:無法解開Optional.None」如何在iOS中使用Swift實現自定義UICollectionViewCell
func collectionView(collectionView: UICollectionView!, cellForItemAtIndexPath indexPath: NSIndexPath!) -> UICollectionViewCell!
{
var cell = collectionView?.dequeueReusableCellWithReuseIdentifier("CustomsCollectionViewCell", forIndexPath: indexPath) as CustomsCollectionViewCell
var values = String(indexPath.row)
cell.lblTextDisplay.text = values **//// I got error in this line ////**
return cell
}
如果有人提供任何教程鏈接,這將是非常有益的。提前致謝。