问题
I would try to set to the collection view on the same view controller, but at runtime it shows the error of signal SIGABRT error so please tell me what can I do to add to the collection view on the same view controller?
回答1:
You can add two collection view in a single view controller by dragging it.
but you have to validate UIcollection view like
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
}
来源:https://stackoverflow.com/questions/37136994/how-to-use-two-collectionview-on-same-view-controller-scroll-one-by-one