FBAdImage
A more recent version of this class is available. Check out the latest version.

Represents an image creative.

Superclass:NSObject
Declared in:FBAdImage.h
Properties
height

Typed access to the image height.

@property (nonatomic, assign, readonly) NSInteger height;
Declared In: FBAdImage.h
url

Typed access to the image url.

@property (nonatomic, copy, readonly, nonnull) NSURL *url;
Declared In: FBAdImage.h
width

Typed access to the image width.

@property (nonatomic, assign, readonly) NSInteger width;
Declared In: FBAdImage.h
Instance Methods
initWithURL:width:height:

This is a method to initialize an FBAdImage.

ParameterDescription
url

The image url.

width

The image width.

height

The image height.

- (instancetype)
initWithURL: (NSURL *)url
width: (NSInteger)width
height: (NSInteger)height
NS_DESIGNATED_INITIALIZER;
Declared In: FBAdImage.h
loadImageAsyncWithBlock:

Loads an image from self.url over the network, or returns the cached image immediately.

ParameterDescription
block

Block to handle the loaded image.

- (void) loadImageAsyncWithBlock:(nullable void(^)(UIImage * __nullable image))block;
Declared In: FBAdImage.h