UIImageView+MOBFWebCache.h 379 B

12345678910111213141516171819
  1. //
  2. // UIImageView+MOBFWebCache.h
  3. // MOBFoundation
  4. //
  5. // Created by wukx on 2018/6/6.
  6. // Copyright © 2018年 MOB. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImageView (MOBFWebCache)
  10. - (void)mobf_setImageWithURL:(nullable NSURL *)url;
  11. - (void)mobf_setImageWithURL:(nullable NSURL *)url
  12. placeholderImage:(nullable UIImage *)placeholder;
  13. @end