# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://aatkit.gitbook.io/ios-integration/ad-networks/feedad-banner-options.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
