FirebaseInAppMessagingDisplay Framework Reference

FIRInAppMessagingImageData


@interface FIRInAppMessagingImageData : NSObject

Contain display data for an image for a fiam message.

  • Gets the image URL from image data.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nonnull) NSString *imageURL;
  • Gets the downloaded image data. It can be null if headless component fails to load it.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSData *imageRawData;
  • Unavailable.

    Declaration

    Objective-C

    - (nonnull instancetype)init;
  • Deprecated, this class shouldn’t be directly instantiated.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithImageURL:(nonnull NSString *)imageURL
                                   imageData:(nonnull NSData *)imageData;