我正在UICollectionView
工作,在UICollectionViewCell
内添加了我的设备照片,现在我想在UICollectionView
内创建子视图。请向我建议如何在subview
内添加UICollectionViews
。需要任何代码或链接。
答案 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的顶部添加一个子视图。这是你想要的?如果没有,请在您的问题中提供更多详细信息。