Skip to content

Instantly share code, notes, and snippets.

@sgl0v
Created November 3, 2019 18:20
Show Gist options
  • Save sgl0v/fc1927af4f5f924abc24f132389a0ad8 to your computer and use it in GitHub Desktop.
Save sgl0v/fc1927af4f5f924abc24f132389a0ad8 to your computer and use it in GitHub Desktop.
extension ImageCache {
subscript(_ key: URL) -> UIImage? {
get {
return image(for: key)
}
set {
return insertImage(newValue, for: key)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment