Represents an image creative.
Superclass: | NSObject |
Declared in: | FBAdImage.h |
height
Typed access to the image height.
@property (nonatomic,
assign,
readonly) NSInteger height;
FBAdImage.h
url
Typed access to the image url.
@property (nonatomic,
copy,
readonly,
nonnull) NSURL *url;
FBAdImage.h
width
Typed access to the image width.
@property (nonatomic,
assign,
readonly) NSInteger width;
FBAdImage.h
initWithURL:width:height:
This is a method to initialize an FBAdImage.
Parameter | Description |
---|---|
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; |
FBAdImage.h
loadImageAsyncWithBlock:
Loads an image from self.url over the network, or returns the cached image immediately.
Parameter | Description |
---|---|
block | Block to handle the loaded image. |
- (void)
loadImageAsyncWithBlock:(nullable void(^)(UIImage * __nullable image))block;
FBAdImage.h