Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Async/await for NukeExtensions #830

Open
NikKovIos opened this issue Jan 19, 2025 · 0 comments
Open

Async/await for NukeExtensions #830

NikKovIos opened this issue Jan 19, 2025 · 0 comments

Comments

@NikKovIos
Copy link

Is there any async/await API planned?

import Nuke
import NukeExtensions

extension UIImageView {
    enum ImageLoadingError: Error {
        case pathIsNil
        case badURL
    }

    func loadImage(path: String?) async throws {
        guard let path else {
            throw ImageLoadingError.pathIsNil
        }
        guard let url = URL(string: path) else {
            throw ImageLoadingError.badURL
        }
        NukeExtensions.loadImage(with: url, into: self) <- here
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant