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 passing AATFeedAdOptions.
Pass the instance to the AATConfiguration while initialising AATKit.
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