AI-generated Key Takeaways
-
IMAFriendlyObstructionPurpose
is an enumeration defining purposes for registering friendly obstructions in Google Interactive Media Ads (IMA) SDK. -
It includes purposes like Media Controls, Close Ad, Not Visible, and Other.
-
Each purpose is represented by an integer value and is accessible in both Swift and Objective-C.
-
These purposes likely help manage UI elements interacting with IMA ads, allowing for smoother user experience.
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