我有一个只有一个部分的UICollection。
我的问题是我的数据源方法:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
当我初始化UICollection时,永远不会调用。我将有效数字(3)返回到以下数据源方法中!
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
使用断点检查后,返回第0部分中的项目数,但仍未调用numberOfItemsInSection
方法。
任何想法?
我确切地说我已经在我的应用程序中使用完全相同的帧而不是相同的数据进行了6次UICollection;我不知道为什么,这次不行。
答案 0 :(得分:2)
好的,我是个白痴。我忘了:[self.view addSubview: myCollectionView];
感谢您的帮助......