如何在同一个视图控制器上使用两个 CollectionView 一个一个地滚动
how to use two CollectionView on same view controller scroll one by one
我会尝试在同一个视图控制器上设置集合视图,但在运行时它显示信号 SIGABRT 错误的错误,所以请告诉我如何添加到同一个视图控制器上的集合视图?
您可以通过拖动在单个视图控制器中添加两个集合视图。
但您必须像
一样验证 UIcollection 视图
func collectionView(collectionView: UICollectionView,
cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
var cell = HomeCollectionViewCell()
if(collectionView == self.collName1)
{
cell = collName.dequeueReusableCellWithReuseIdentifier("CellIdentifier", forIndexPath: indexPath) as! HomeCollectionViewCell
}
else
if(collectionView == self.collName2)
{}
return cell
}
我会尝试在同一个视图控制器上设置集合视图,但在运行时它显示信号 SIGABRT 错误的错误,所以请告诉我如何添加到同一个视图控制器上的集合视图?
您可以通过拖动在单个视图控制器中添加两个集合视图。
但您必须像
一样验证 UIcollection 视图func collectionView(collectionView: UICollectionView,
cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
var cell = HomeCollectionViewCell()
if(collectionView == self.collName1)
{
cell = collName.dequeueReusableCellWithReuseIdentifier("CellIdentifier", forIndexPath: indexPath) as! HomeCollectionViewCell
}
else
if(collectionView == self.collName2)
{}
return cell
}