我正在尝试使用viewDidLoad()从我的数据库中提取图像然后显示图像,并突出显示第一个图像。
到目前为止我的代码是:
profile?.fetchImages(onComplete: { (errors, images) in
for error in errors {
print("Error", error)
}
for imageMap in images {
self.photos.append(imageMap.value)
}
if self.photos.count < self.MAX_PHOTOS {
self.photos.append(self.EMPTY_IMAGE)
}
DispatchQueue.main.async {
self.photoCollectionView.reloadData()
}
self.updateSlideshowImages()
let indexPath = IndexPath(row: 0, section: 0)
let cell = self.photoCollectionView.cellForItem(at: indexPath)
if cell != nil {
self.setBorder(cell!)
}
})
但是,对于我来说,尽管图像存在并且被提取,但是单元格总是为零,因此从不调用setBorder。为什么细胞总是零?我只想在第一个单元格上设置边框。
答案 0 :(得分:2)
您已将self.photoCollectionView.reloadData()
放入异步块中,因此let cell = self.photoCollectionView.cellForItem(at: indexPath)
将在收集视图重新加载之前立即运行,这就是您获得第一个单元格nil
的原因。
您需要确保在收集视图重新加载后,我的意思是在加载所有集合视图单元格后,您就可以进行操作了。
或者,您可以在cellForItemAtIndexPath
中执行此操作,如下所示......
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: CellIdentifier.jobCollectionViewCellIdentifier, for: indexPath) as! <#Your UICollectionViewCell#>
if indexPath.section == 0 && indexPath.row == 0 {
//highlight cell here
}
return cell
}
如果要在集合视图中加载所有图像后突出显示单元格,则需要检查集合视图的数据源。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = ...
if indexPath.row == arrImages.count-1 {
let newIndexPath = IndexPath(row: 0, section: 0)
if let cellImg = self.photoCollectionView.cellForItem(at: newIndexPath) {
self.setBorder(cellImg)
}
}
}
答案 1 :(得分:2)
在收到回复后,不要在UICollectionViewCell
中突出显示viewDidLoad()
,而是在willDisplay
delegate
方法中突出显示,{/ p>
func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath)
{
if indexPath.row == 0
{
cell.isHighlighted = true
}
}
根据单元格突出显示状态,在isHighlighted
的 UICollectionViewCell
属性中添加单元格的边框,即
class CustomCell: UICollectionViewCell
{
override var isHighlighted: Bool{
didSet{
self.layer.borderWidth = self.isHighlighted ? 2.0 : 0.0
}
}
}
如果您想根据选择状态更改单元格的外观,可以使用 isSelected
属性。
如果您仍然遇到任何问题,请告诉我。
答案 2 :(得分:1)
使用cellForRow
方法设置单元格的边框。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cellIdentifier", for: indexPath) as! YourCustomCell
if indexPath.row == 0 {
self.setBorder(cell)
}
return cell
}