我有一个关于如何在Swift(mac os)中使用tiff图像的问题。
我想实现的目标:
我有两个tiff图像(first.tif,second.tif),我想在我的mac os应用程序中显示它们。
let image: NSImage = NSImage(named: "first")! // fails here
let leftImageView: NSImageView = NSImageView(image: image)
self.view.addSubview(leftImageView)
例外
CoreUI: attempting to lookup a named image 'first' with a type that is not a data type in the AssetCatalog
如何在Mac OS中加载TIFF文件?
在处理tiff图片时,还是应该完全改变我的策略?
有人可以帮我解决这个问题吗?
感谢和问候