ImageHandler.h 437 B

1234567891011121314
  1. //
  2. // ImageHandler.h
  3. // TumblrDownloader
  4. //
  5. // Created by HonorLee on 16/1/21.
  6. // Copyright © 2016年 HonorLee. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface ImageHandler : NSObject
  11. +(NSString *)getAndSaveThumbImageFromURLandSetToImageView:(NSString *)imagePath saveToName:(NSString *)fileName setToImage:(UIImageView *)imageView;
  12. //+(void)showAndCacheImage:(NSDictionary *)obj;
  13. @end