# 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](https://ios-sdk.aatkit.com/references/documentation/aatkit/aatadnetworksoptions) including your [AATFeedAdOptions](https://ios-sdk.aatkit.com/references/documentation/aatkit/aatfeedadoptions).
* Provide this instance to the [AATConfiguration](https://ios-sdk.aatkit.com/references/documentation/aatkit/aatconfiguration) while initialising AATKit.
* AATKit will automatically forward the specified options to the FeedAd SDK during ad loading.

{% tabs %}
{% tab title="Swift" %}

```swift
let conf = AATConfiguration()
...
let feedAdOptions = AATFeedAdOptions(shutterColor: .black)
// OR
let feedAdOptions = AATFeedAdOptions(disableSpinner: false)
conf.adNetworksOptions = AATAdNetworksOptions(feedAdOptions: feedAdOptions)
...
AATSDK.initAATKit(with: conf)
```

{% endtab %}

{% tab title="Objective-C" %}

```objectivec
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
                                                            superAwesomeOptions:nil
                                                              graviteRTBOptions:nil
                                                               displayIOOptions:nil
                                                             metaBiddingOptions:nil];
...
[AATSDK initAATKitWith:conf];
```

{% endtab %}
{% endtabs %}
