FeedAd Banner Options
You can set the banner's background colour and whether to use the loading indicator or not by:
Create an instance of AATAdNetworksOptions including your AATFeedAdOptions.
Provide this instance to the AATConfiguration while initialising AATKit.
AATKit will automatically forward the specified options to the FeedAd SDK during ad loading.
let conf = AATConfiguration()
...
let feedAdOptions = AATFeedAdOptions(shutterColor: .black)
// OR
let feedAdOptions = AATFeedAdOptions(disableSpinner: false)
conf.adNetworksOptions = AATAdNetworksOptions(feedAdOptions: feedAdOptions)
...
AATSDK.initAATKit(with: conf)
Last updated