' downloadURL()'不推荐使用:使用`StorageReference.downloadURLWithCompletion()`获取当前下载URL。

时间:2018-04-24 15:49:15

标签: ios xcode firebase-realtime-database firebase-storage

Storage.storage().reference().child(ImageUid).putData(ImageData, metadata: metadata) { (metadata, error) in
            if error != nil {
                print("Couldn't Upload Image")
            } else {
                print("Uploaded")
                let downloadURl = metadata?.downloadURL()?.absoluteString
                if let url = downloadURl {
                    self.SetUpUser(Image: url)
                }
            }
        }

    }
}

错误:

  

' downloadURL()'不推荐使用:使用   StorageReference.downloadURLWithCompletion()获取当前信息   下载网址。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:5)

错误说你需要使用StorageReference.downloadURLWithCompletion(),你需要使用它:

let storageItem = Storage.storage().reference().child(ImageUid)
storageItem.putData(ImageData, metadata: metadata) { (metadata, error) in
    if error != nil {
        print("Couldn't Upload Image")
    } else {
        print("Uploaded")
        storageItem.downloadURL(completion: { (url, error) in
            if error != nil {
                print(error!)
                return
            }
            if url != nil {
                self.SetUpUser(Image: url!.absoluteString)
            }
        }
    }
}