gpt4 book ai didi

swift - 无法将项目附加到 CollectionView

转载 作者:可可西里 更新时间:2023-11-01 02:17:04 25 4
gpt4 key购买 nike

我在 UIViewController 中使用 CollectionView,这个 CollectionView 使用 PinterestLayout。我现在已经有 10 件商品(1 件是“+”图片,9 件是礼物图片)。当我单击此 saveButton 以再添加一个 Gift 时:

enter image description here

它不会加载“Torres”图像。

enter image description here

这是我在 saveButton 操作中的代码:

func saveButtonTapped(sender: AnyObject) {
addViewIsShowed = false
let caption = addView.addTextView.text
let image = addView.addImageView.image!
let gift = Gift(caption: caption, image: image.decompressedImage)
// gifts.count is 10
gifts.append(gift)
// gifts.count is now 11
addView.frame = CGRect(x: 0, y: 0, width: 0, height: 0)
collectionView.alpha = 1.0
saveButton!.removeFromSuperview()
collectionView.reloadData()
}

这里是 CollectionViewDataSource 方法:

func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return gifts.count
}

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

let cell = collectionView.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as! GiftCollectionViewCell
cell.gift = gifts[indexPath.item]
return cell

}

最佳答案

当你想刷新 collectionView 中的数据时,你必须在主线程中重新加载数据。

dispatch_async(dispatch_get_main_queue(),{
collectionView.reloadData()
})

关于swift - 无法将项目附加到 CollectionView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36788872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com