Skip to content

Instantly share code, notes, and snippets.

@keremk
Created January 12, 2020 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keremk/fa12933da5bf6a36002a7e1af1720270 to your computer and use it in GitHub Desktop.
Save keremk/fa12933da5bf6a36002a7e1af1720270 to your computer and use it in GitHub Desktop.
func fetchPreviewImage(imageName: String, size: ImageSizeable, fetcher: () -> CGImage?) -> CGImage? {
#if PREVIEW
return loadPreviewImage(name: imageName, size: size)
#else
return fetcher()
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment