如何在同一个视图控制器上使用两个CollectionView逐个滚动

时间:2016-05-10 11:18:06

标签: ios iphone swift uicollectionview sigabrt

我会尝试在同一个视图控制器上设置为集合视图,但在运行时它会显示SIGABRT信号错误,所以请告诉我如何在同一个视图控制器上添加到集合视图?< / p>

1 个答案:

答案 0 :(得分:2)

您可以通过拖动在单个视图控制器中添加两个集合视图。

但你必须验证像

这样的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
}