UIImageJPEGRepresentation Swift 的错误循环

error loop for UIImageJPEGRepresentation Swift

我正在从接收到的推送中将图像保存到磁盘 notification.At 首先我尝试使用我通常在整个应用程序中使用的静态函数,但我无法从 NotificationService.swift 中引用它这是通知扩展。所以我复制了文件中的函数来使用它,但是 Xcode 陷入了错误循环。无论我如何声明 data 都会抛出错误。如果从错误 'jpegData(compressionQuality:)' has been renamed to 'UIImageJPEGRepresentation(_:_:)' 执行更正,它会抛出错误 'UIImageJPEGRepresentation' has been replaced by instance method 'UIImage.jpegData(compressionQuality:)' 你能看到这里发生了什么吗?这是函数:

func saveImage(imageName: String, image: UIImage) {


        guard let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first else { return }

        let fileName = imageName
        let fileURL = documentsDirectory.appendingPathComponent(fileName)
        guard let data = UIImageJPEGRepresentation(image, 1)  else { return }
        guard let data2 = image.jpegData(compressionQuality: 0.75) else {return}
        guard let data3 = image.UIImageJPEGRepresentation(compressionQuality: 1) else {return}
//
        //Checks if file exists, removes it if so.
        if FileManager.default.fileExists(atPath: fileURL.path) {
            do {
                try FileManager.default.removeItem(atPath: fileURL.path)
                print("Removed old image")
            } catch let removeError {
                print("couldn't remove file at path", removeError)
            }

        }

        do {
            try data.write(to: fileURL)
        } catch let error {
            print("error saving file with error", error)
        }

    }

此外,为什么我不能将原始静态函数引用为 Functions.saveImage? 一如既往的感谢。

错误循环:

如果您使用 swift 4.2+,请尝试仅使用

guard let data = image.jpegData(compressionQuality: 0.75) else {
    return
}

否则,如果您使用 swift 4.0,请尝试仅使用

guard let imageData = UIImageJPEGRepresentation(image, 0.8) else {
    return
}

不要忘记重新编译代码。

找到问题了。我有使用 Swift 4.2 的 NotifiationService 和 Swift 4.0 的应用程序。我一定是昨天检查的时候不小心设置了它.. 再次感谢你们 真的很愚蠢的问题但是嘿..我们现在知道这种循环错误指向模块中不同的 Swift 版本集。在这里吸取教训.. 干杯