You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
431 B

//
// UIView+MOBFWebCache.h
// MOBFoundation
//
// Created by wukx on 2018/6/6.
// Copyright © 2018年 MOB. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef void(^MOBFSetImageBlock)(UIImage * _Nullable image, NSError * _Nullable error);
@interface UIView (MOBFWebCache)
- (void)mobf_internalSetImageWithURL:(nullable NSURL *)url
setImageBlock:(nullable MOBFSetImageBlock)setImageBlock;
@end