我试图在 IKImageView 中显示来自文件 url 的图像,但它只显示一个空框架。我的项目在 Xcode 10.0 上的 Cocoa Swift 4.2 MacOS 中。
我的代码:
class ViewController: NSViewController {
@IBOutlet weak var imagePreView: IKImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
imagePreView.wantsLayer = true
imagePreView.setImageWith(URL(fileURLWithPath: "My_file_URL"))
imagePreView.isHidden = false
}
override var representedObject: Any? {
didSet {
// Update the view, if already loaded.
}
}
}
我做错了什么还是遗漏了什么?我已经搜索了几个小时,但我仍然没有在 Swift 中找到任何关于 IKImageView 的有用信息,或者它们都已经过时了,就像这样。