在UICollectionView Xcode中添加子视图

时间:2013-11-21 05:36:18

标签: ios objective-c xcode uicollectionview

我正在UICollectionView工作,在UICollectionViewCell内添加了我的设备照片,现在我想在UICollectionView内创建子视图。请向我建议如何在subview内添加UICollectionViews。需要任何代码或链接。

1 个答案:

答案 0 :(得分:15)

添加子视图非常简单,

//Create subview    
UIView *subview = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.collectionView.frame.size.width, 20)];
//Add
[collectionView addSubview:subview];
//Bring to front so that it does not get hidden by cells
[collectionView bringSubviewToFront:subview];
//This will shift collectionView content down by 20px at top
[collectionView setContentInset:UIEdgeInsetsMake(subview.frame.size.height, 0, 0, 0)];

上面的代码将在collectionView的顶部添加一个子视图。这是你想要的?如果没有,请在您的问题中提供更多详细信息。