gpt4 book ai didi

ios - 使用 FirebaseUI 和存储引用加载图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:10:16 25 4
gpt4 key购买 nike

我正在尝试使用 FirebaseUI 将图像加载到 Collection View 中 following this pattern .出于某种原因,加载了默认图像,但我在 Google 存储中引用的图像从未出现。当我查看引用资料时,它们似乎都是正确的,但图像仍然无法加载到 ImageView 中。这是我的 View Controller :

class EventViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource {

@IBOutlet weak var postColView: UICollectionView!

var posts: [Post] = []
var event: Event!
var ref = FIRDatabase.database().reference(withPath: "post-items")

override func viewWillAppear(_ animated: Bool) {

ref.queryOrderedByKey().observe(.value, with: { snapshot in

var newItems: [Post] = []

for item in snapshot.children {

let newPost = Post(snapshot: item as! FIRDataSnapshot)

newItems.append(newPost)
}

self.posts = newItems
self.postColView.reloadData()
})
func collectionView(_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! PostCell

let imageView = cell.postImageView

let picRef = FIRStorage.storage().reference().child("\(posts[indexPath.row].imagePath!).jpg")


print(picRef)
imageView?.sd_setImage(with: picRef, placeholderImage: UIImage(named: "IMG_2684"))

return cell

}
}

我的猜测是它与正在加载的默认图像有关,但是一旦下载了新图像, View 就不会刷新。

最佳答案

Google Storage 上的图片的标题中似乎没有“.jpg”,所以当我在末尾使用“.jpg”扩展名引用它时,它没有找到它。从引用中删除“.jpg”解决了我的问题。

关于ios - 使用 FirebaseUI 和存储引用加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44273257/

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