AI-generated Key Takeaways
-
IMAFriendlyObstructionPurpose
is an enumeration defining purposes for registering friendly obstructions within an ad. -
It includes purposes such as media controls, close ad button, obstructions not visible to the user, and a generic "other" category.
-
Each purpose is represented by an integer value starting from 0 for
mediaControls
and incrementing for subsequent purposes. -
The documentation for individual purposes within the enumeration is currently undocumented.
IMAFriendlyObstructionPurpose
enum IMAFriendlyObstructionPurpose : NSUInteger {}
A list of purposes for which an obstruction would be registered as friendly.
-
Undocumented
Declaration
Swift
case mediaControls = 0
Objective-C
IMAFriendlyObstructionPurposeMediaControls
-
Undocumented
Declaration
Swift
case closeAd = 1
Objective-C
IMAFriendlyObstructionPurposeCloseAd
-
Undocumented
Declaration
Swift
case notVisible = 2
Objective-C
IMAFriendlyObstructionPurposeNotVisible
-
Undocumented
Declaration
Swift
case other = 3
Objective-C
IMAFriendlyObstructionPurposeOther