AI-generated Key Takeaways
-
The
PALSettings
class manages SDK-wide settings, including storage and user age targeting. -
allowStorage
determines if data storage is permitted, defaulting to false for TCFv2 compliance. -
directedForChildOrUnknownAge
signals if the ad request targets children or users with unknown age, defaulting to false.
PALSettings
@interface PALSettings : NSObject
The PALSettings class stores SDK wide settings.
-
Specify if storage is allowed (used for TCFv2 compliance). Default value is false.
Declaration
Swift
var allowStorage: Bool { get set }
Objective-C
@property (nonatomic) BOOL allowStorage;
-
Specify if the ad request is directed to a child or user of an unknown age (for example, TFCD or TFUA). Default value is false.
Declaration
Swift
var directedForChildOrUnknownAge: Bool { get set }
Objective-C
@property (nonatomic) BOOL directedForChildOrUnknownAge;