本文介绍了UICollectionView添加UICollectionCell的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试将 UICollectionCell 放入Interface Builder中的 UICollectionView 时,我不能将其置于原因不明。单元格将转到工具栏而不添加到 UICollectionView

When I try to put UICollectionCell to UICollectionView in Interface Builder I can't put it with unknown reasons. The cell is going to the tools bar without adding to UICollectionView

我正在使用:


  • iOS SDK 6.0

  • XCode 4.5.1

  • 我不使用故事板

推荐答案

StoryBoard中只有UICollectionView里面有UICollectionViewCell。
如果使用XIB,使用CellName.xib创建一个新的XIB,向其添加CollectionViewCell,指定UICollectionView自定义类的名称。之后使用registerNib。

Only UICollectionView inside StoryBoard have UICollectionViewCell inside.If use XIB, create a new XIB with CellName.xib, add CollectionViewCell to it, specify name of UICollectionView custom class. After that use registerNib.

示例代码:

这篇关于UICollectionView添加UICollectionCell的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 19:52