在应用程序中导入图像后,我在Xcode的调试区域收到以下消息:

"[21950:1148196] Metadata.framework [Error]: couldn't get the client port".

我怎样才能摆脱这个错误?
这是我上传图片的代码:
@IBAction func importButton(sender: AnyObject) {

    let uploadFile: NSOpenPanel = NSOpenPanel()

    uploadFile.allowsMultipleSelection = false
    uploadFile.canChooseFiles = true
    uploadFile.canChooseDirectories = false

    uploadFile.runModal()

    let chosenPicture = uploadFile.URL

        if(chosenPicture != nil) {

            let pictureImport = NSImage(contentsOfURL: chosenPicture!)
            imageWell.image = pictureImport
        }
}

最佳答案

我得到这个错误信息,因为我有聚光灯索引禁用(因此,应用程序和图像的元数据是不可访问的)。
在错误信息后转向聚光灯自动标引

"Metadata.framework [Error]: couldn't get the client port"

在Xcode的调试区域中消失。

10-07 23:18