AI-generated Key Takeaways
-
GADMBannerAnimationType is an enum that defines the types of animations used for transitions between two mediated ads.
-
Available animation types include no animation, flips from left or right, curls up or down, slides from left or right, fade in, and a random animation.
GADMBannerAnimationType
enum GADMBannerAnimationType : NSInteger {}These are the types of animation we employ for transitions between two mediated ads.
-
< No animation.
Declaration
Swift
case none = 0Objective-C
GADMBannerAnimationTypeNone = 0 -
< Flip from left.
Declaration
Swift
case flipFromLeft = 1Objective-C
GADMBannerAnimationTypeFlipFromLeft = 1 -
< Flip from right.
Declaration
Swift
case flipFromRight = 2Objective-C
GADMBannerAnimationTypeFlipFromRight = 2 -
< Curl up.
Declaration
Swift
case curlUp = 3Objective-C
GADMBannerAnimationTypeCurlUp = 3 -
< Curl down.
Declaration
Swift
case curlDown = 4Objective-C
GADMBannerAnimationTypeCurlDown = 4 -
< Slide from left.
Declaration
Swift
case slideFromLeft = 5Objective-C
GADMBannerAnimationTypeSlideFromLeft = 5 -
< Slide from right.
Declaration
Swift
case slideFromRight = 6Objective-C
GADMBannerAnimationTypeSlideFromRight = 6 -
< Fade in.
Declaration
Swift
case fadeIn = 7Objective-C
GADMBannerAnimationTypeFadeIn = 7 -
< Random animation.
Declaration
Swift
case random = 8Objective-C
GADMBannerAnimationTypeRandom = 8