我的UICollectionView出了问题。
我在我的集合视图中添加了一个50的标题,所以我可以在顶部添加一个UILabel和一个UITextField。问题是当我运行代码时它没有出现:
我的故事板:
在ios模拟器中会发生什么:
感谢任何可以提供帮助的人!
答案 0 :(得分:0)
尝试创建集合视图的这个序列
答案 1 :(得分:0)
将其放入collectionView.m
文件。
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
[Your header cocoa file] *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"ObjectCVHeader" forIndexPath:indexPath];
return headerView;
}
//您需要创建一组UICollectionReusableView
的.h.m文件。之后,将它们与标题视图链接。