gpt4 book ai didi

ios - 无法从 JSON 设置图像?

转载 作者:行者123 更新时间:2023-11-28 15:14:57 25 4
gpt4 key购买 nike

我正在使用 Firebase 数据库和 Firebase 存储。我有一个 iOS Swift 应用程序,它允许用户选择多个图像,将它们上传到 Firebase 存储,上传后,它获取下载的 URL 并将它们存储为:

enter image description here

为了在应用程序中显示这些图像,我有以下 xib 文件:

enter image description here

中间(大)UIImageView 位于 UIStackView 内部,因为它可以显示多于 1 个图像。

我的问题是我从数据库中获取了 URL,但由于某种原因我无法在应用程序中显示它们。我使用框架 SDWebImage 来缓存和显示图像。到目前为止,在应用程序中,它运行良好,但在这里不行。我不明白我哪里错了。

    if let photoURLString = post?.photoURLs
{
for photo in photoURLString
{
let photoURL = URL(string: photo)
print(photoURL!)
postImage.sd_setImage(with: photoURL)
//postImagesStackView.addArrangedSubview(postImage)
}
}

post 是模型对象。我正在使用 for in 循环遍历数据库中的图像数组。当我打印每个网址时,我得到了实际的网址。但它很简单,没有显示。我明白了。图像无处可寻/显示:

enter image description here

最佳答案

尝试为 UIImage 添加纵横比。例:在 xib 文件中,将 UIImage 的比率设置为 1。

关于ios - 无法从 JSON 设置图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47011994/

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