AI-generated Key Takeaways
-
IMAFriendlyObstructionPurpose
is an enumeration defining purposes for registering an obstruction as "friendly" within an ad view. -
It includes options for media controls, close ad button, invisible elements, and a general "other" purpose.
-
Each purpose is represented by an integer value, starting from 0 for
mediaControls
. -
The enumeration is intended for use with Google's Interactive Media Ads (IMA) SDK.
-
All cases are currently undocumented, requiring further investigation for specific usage details.
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