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