Last updated 5 months ago
You can set the banner's background colour and whether to use the loading indicator or not by:
Create an instance of passing .
Pass the instance to the 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)
AATConfiguration *conf = [[AATConfiguration alloc] init]; ... AATFeedAdOptions *feedAdOptions = [[AATFeedAdOptions alloc] initWithShutterColor:[UIColor blackColor] disableSpinner:NO]; conf.adNetworksOptions = [[AATAdNetworksOptions alloc] initWithAppNexusOptions:nil feedAdOptions:feedAdOptions adMobOptions:nil dfpOptions:nil datonomyOptions:nil]; ... [AATSDK initAATKitWith:conf];