FBAdImage
Une version plus récente de cette classe est disponible. Rendez-vous sur la dernière version.

Represents an image creative.

Superclass:NSObject
Declared in:FBAdImage.h
Propriétés
height

Typed access to the image height.

@property (nonatomic, assign, readonly) NSInteger height;
Déclaré dans : FBAdImage.h
url

Typed access to the image url.

@property (nonatomic, copy, readonly, nonnull) NSURL *url;
Déclaré dans : FBAdImage.h
width

Typed access to the image width.

@property (nonatomic, assign, readonly) NSInteger width;
Déclaré dans : FBAdImage.h
Méthodes d’instance
initWithURL:width:height:

This is a method to initialize an FBAdImage.

ParamètreDescription
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;
Déclaré dans : FBAdImage.h
loadImageAsyncWithBlock:

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

ParamètreDescription
block

Block to handle the loaded image.

- (void) loadImageAsyncWithBlock:(nullable void(^)(UIImage * __nullable image))block;
Déclaré dans : FBAdImage.h