0
是否可以爲UICollectionViewCell使用多於一個xib佈局。比方說,我只有一個帶有textfields的xib佈局,我們稱其爲「textfield.xib」,另一個xib僅包含圖像「image.xib」。在collectionViewDelegate功能cellForItemAtIndexPath我宣佈兩個單元如下面的代碼:現在Swift:用於一個UICollectionViewCell的不同xib佈局
cell:ImageCell=collectionView.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as ImageCell
cell:TextFieldCell=collectionView.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as TextFieldCell
的問題是如何註冊的碎粒。 AFAIK我只能爲一個collectionView註冊一個筆尖。