- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Storyboard 中创建了一个 collectionView,然后将 Delegate 和 DataSource 方法放入管理该屏幕的 ViewController 的扩展中。
collectionView 使用layoutDelegate 来显示四乘四的图像网格。所有单元格都显示在网格中,因此单元格不可见不是问题,它们都是类 imageCVC
的实例,该类是 UICollectionViewCell
这一切加载都没有问题,但我现在想在将控制权传递给用户之前操作四个随机图像。请注意,在 viewDidLoad
结束时,collectionView 可能尚未完全加载,我在 viewDidLayoutSubviews< 中调用选择要操作的图像的例程
方法。功能如下:changeImages()
/
func changeImages() {
collectionView.layoutIfNeeded()
let maxChanges = 30
var imageIndex = 0
var imageChanges 0
while imageChanges < maxChanges {
imageIndex = Int.random(in: 0..<(collectionView.numberOfItems(inSection: 0)))
if let cell = collectionView.cellForItem(as: IndexPath(row: imageIndex, section: 0)) as? imageCVC {
changeCell(cell)
imagesChanges += 1
}
}
}
(编辑:合并了 Sam 的建议(如下),但它仍然总是返回 nil
!)
不幸的是,虽然 imageIndex
设置正确(因此集合知道它有多少个元素),但 cellForItem
调用始终返回 nil。我已经在函数的开头强制布局了,但是没有效果。
请有人让我知道我做错了什么?非常感谢。
最佳答案
在以下行中:
imageIndex = Int.random(in: 0...(collectionView.numberOfItems(inSection: 0)))
代码从 0 开始,一直到 Collection View 项目计数,因此如果计数为 10,则代码从 0 到 10,其中包括 10,总共 11 个项目。这可能是导致崩溃的原因,因为只有 10 个项目,而我们尝试访问 11 个项目。
只需更改:
0...(collectionView.numberOfItems(inSection: 0)
至
0..<(collectionView.numberOfItems(inSection: 0)
关于swift - CollectionView.cellForItem 返回 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58901216/
因此 UICollectionViews 公开了方法 cellForItem(at:) ,它允许我们访问 Collection View 中包含的单元格。 我们还知道 collectionView 使
Xcode 8.2.1将 Swift 2.2 迁移到 Swift 3 之后 UICollectionView 的 cellForItem 未正确调用,但在迁移工作正常之前 我有带水平 UICollec
我在函数调用中使用 collectionView.cellForItem: func collectionView(_ collectionView: UICollectionView, didSel
我正在一个基本的 ViewController 中实现一个 UICollectionView (collectionView)我的 Collection View 必须像 numbersofItemI
我在 Storyboard 中创建了一个 collectionView,然后将 Delegate 和 DataSource 方法放入管理该屏幕的 ViewController 的扩展中。 collec
我正在使用 Swift4 和 Xcode9。 我使用下面的委托(delegate)方法创建我的 collectionView 单元格; func collectionView(_ collection
我有两个数组,一个包含字符串,一个包含自定义对象。 我分别创建了两个不同的单元格。我已将两个数组的内容添加到第三个通用数组 Any 中。我在 cellForItem 中使用第三个数组 (combine
如果我尝试通过 cellForItem 获取我的项目,我的 UICollectionViewItem 中将得到 nil。但数据显示在我的 UICollectionView 中。我正在通过远程在我的 U
我读过让我的 collectionViewController 成为 UICollectionViewDelegateFlowLayout 的委托(delegate),我已经正确注册了我的单元格, c
在 Xcode 中,我在 userCell 中创建了一个 var“userImage” - UICollectionViewCell 的子类。 import UIKit class userCell:
我是一名优秀的程序员,十分优秀!