AI-generated Key Takeaways
-
IMASecureSignals
provides a way to send custom, encrypted data with ad requests, known as Secure Signals. -
This custom data is an encrypted blob containing signals collected by the publisher and agreed upon by the publisher and bidder.
-
IMASecureSignals
has a propertycustomData
which is a string and can only be read (readonly). -
It's initialized with
initWithCustomData:
which takes a custom data string as input.
IMASecureSignals
@interface IMASecureSignals : NSObject
/**
* Secure Signal with custom data sent with ads request. Secure Signal with custom
* data is an encrypted blob containing signals collected by the publisher and previously agreed
* upon by the publisher and bidder。
*/
@property(nonatomic, copy, readonly) NSString *customData;
- (instancetype)initWithCustomData:(NSString *)customData NS_DESIGNATED_INITIALIZER;
/**
* :nodoc:
*/
- (instancetype)init NS_UNAVAILABLE;
@end
Undocumented
-
Secure Signal with custom data sent with ads request. Secure Signal with custom data is an encrypted blob containing signals collected by the publisher and previously agreed upon by the publisher and bidder。
Declaration
Swift
var customData: String { get }
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull customData;
-
Undocumented
Declaration
Swift
init(customData: String)
Objective-C
- (instancetype)initWithCustomData:(NSString *)customData NS_DESIGNATED_INITIALIZER;