FBAdImage
@interfaceFBAdImage:NSObject
Represents an image creative.
@interfaceFBAdImage:NSObject
@property(nonatomic,copy,readonly)NSURL*_Nonnullurl;
varurl:URL{get}
@property(nonatomic,assign,unsafe_unretained,readonly)NSIntegerwidth;
varwidth:Int{get}
@property(nonatomic,assign,unsafe_unretained,readonly)NSIntegerheight;
varheight:Int{get}
-(nonnullinstancetype)initWithURL:(nonnullNSURL*)urlwidth:(NSInteger)widthheight:(NSInteger)height;
init(url:URL,width:Int,height:Int)
-(void)loadImageAsyncWithBlock:(nullablevoid(^)(UIImage*_Nullable))block;
funcloadAsync(block:((UIImage?)->Void)?=nil)