// Copyright © 2018 650 Industries. All rights reserved. #import typedef void (^UMImageLoaderCompletionBlock)(NSError *error, UIImage *image); @protocol UMImageLoaderInterface - (void)loadImageForURL:(NSURL *)imageURL completionHandler:(UMImageLoaderCompletionBlock)completionHandler; @end