gpt4 book ai didi

ios - 无法在 swift 2 中显示外部资源文件夹中的 jpeg

转载 作者:行者123 更新时间:2023-11-30 13:55:04 26 4
gpt4 key购买 nike

这可能是我无知的问题,但我只是想显示一个图像......按照下面的代码。

我没有收到任何错误。该图像存在,但未出现在模拟器中。如果我将路径字符串更改为不存在的图像,则会收到错误,因此我假设它正确找到了图像。我错过了什么?

image of view controller

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var hotspotImage: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

let path = "/Users/Mel/Library/Developer/CoreSimulator/Devices/5760868E-BC01-4021-9500-1D4C09FE5106/data/Containers/Data/Application/2E99C508-30E5-4C83-BC72-CBF141A64769/Documents/tours/22/HI2.jpg"
let image = UIImage(contentsOfFile: path)
hotspotImage = UIImageView(image: image!)
}

}

最佳答案

而不是 hotspotImage = UIImageView(image: image!) 尝试 hotspotImage.image = image!

关于ios - 无法在 swift 2 中显示外部资源文件夹中的 jpeg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33731348/

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