如何将垂直和水平滚动分别设置为CollectionReusableView和CollectionVeiwCell

时间:2016-04-06 07:20:00

标签: uicollectionviewcell uicollectionviewlayout uicollectionreusableview

UICollectionView的ContentView有两个项目。

  • CollectionReusableView。
  • CollectionViewCell。

在这里,我想将CollectionReusableView设置为带有垂直滚动方向的标题和带有水平滚动方向的collectionVeiwCells。

我如何制作这个可行的

enter image description here

这里,Top View是collectionReusableView,Bellow视图是collectionViewCell。 我想单独为CollectionveiwCells进行水平滚动。

enter image description here

1 个答案:

答案 0 :(得分:2)

我们无法为UICollectionView的单元格或collectionReusableViews单独设置水平和垂直滚动。只能设置滚动方向并单独跳转到UICollectionView类。

我已经计划用弹力标题自定义UIView,因为我在两个collectionViewCells中安排了两个单独的UITableViews,其中垂直 滚动 水平滚动方向。此collectionveiw应该是UITableViewController的一部分,静态单元格应该只有垂直滚动。为了更清楚地了解这一点,请参考下面的图片。 enter image description here

enter image description here