Invalid conversion from throwing function of type '(AFDownloadResponse)
Problem:
I had the error as like below
Invalid conversion from throwing function of type '(AFDownloadResponse<URL?>) throws -> Void' (aka '(DownloadResponse<Optional<
I had added the line below after that error came
let fileURLs = try FileManager.default.
do {
let fileURLs = try FileManager.default.
}
catch {
}
Comments
Post a Comment