例如:
@IBOutlet weak var Collection01: UICollectionView!
@IBOutlet weak var Collection02: UICollectionView!
那么如何分别为他们定义Delegate与DataSource的方法呢,例如下面这个返回单元格数量的方法
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 2
}
迷茫2017-04-17 18:00:20
@Taku 前半句是正確的解決方案。不過後半句的 Tag 判斷並不好,效率低。
我說個簡單的實作:
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
if collectionView == Collection01 {
return 1
} else if collectionView == Collection02 {
return 2
}
return 0
}
PS:變數名稱頭字母應當小寫。