作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 tableviewcell 中有两个 Collection View 。我设置了第一个,效果很好。问题是我不知道如何在数据源协议(protocol)函数中调用第二个 collectionview。
P.S 我在第一个教程中使用了 ashfurrow 的教程。
最佳答案
在 Collection View 数据源方法中,您需要检查调用该方法的 Collection View 引用,即
示例
func collectionView(_ collectionView: UICollectionView,
numberOfItemsInSection section: Int) -> Int
{
if collectionView === self.collectionView1
{
//code for 1st collection view
}
else if collectionView === self.collectionView2
{
//code for 2nd collection view
}
}
在其他 Collection View 数据源方法中应用相同的检查。
关于swift - 如何在一个tableview中使用两个collectionview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39661771/
我是一名优秀的程序员,十分优秀!