---
metadata:
  - name: generator
    content: Diplodoc Platform v5.57.3
alternate:
  - https://boost.yandex.com/doc/en/ad-monetization/dev/ios/adaptive-sticky-banner.md
  - https://boost.yandex.com/doc/ru/ad-monetization/dev/ios/adaptive-sticky-banner.md
  - href: en/ad-monetization/dev/ios/adaptive-sticky-banner.md
    type: text/markdown
    title: Markdown version
  - href: llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://boost.yandex.com/doc/en/llms.txt

# Adaptive sticky banner

<!-- source: en/ad-monetization/dev/_includes/adaptive-sticky-banner.md -->
An adaptive sticky banner is a small, automatically updated ad placed at the bottom or top of the app screen. It doesn't overlap the main content and is often used in gaming apps.
<!-- endsource: en/ad-monetization/dev/_includes/adaptive-sticky-banner.md -->

<!-- source: en/ad-monetization/dev/_includes/adaptive-sticky-banner.md -->
The adaptive sticky banner delivers maximum performance by optimizing the ad size for each device. With this ad type, developers can set the maximum allowable ad width, and the system determines the optimal ad size automatically.
<!-- endsource: en/ad-monetization/dev/_includes/adaptive-sticky-banner.md -->

{% cut "Appearance" %}

<img src="https://yastatic.net/s3/doc-binary/src/docs/support/mobile-ads/en/monetization/_images/banner-sticky-en-ex.png" width="200">

{% endcut %}

This guide shows how to integrate adaptive sticky banners into iOS apps.
Besides code samples and instructions, it contains format-specific recommendations and links to additional resources.


## Prerequisite {#pre}

<!-- source: en/ad-monetization/dev/_includes/pre-ios.md -->
1. Follow the SDK integration steps described under [Quick start](https://boost.yandex.com/doc/en/ad-monetization/dev/ios/quick-start.md).
2. First, you need to [initialize](https://boost.yandex.com/doc/en/ad-monetization/dev/ios/quick-start.md#init) the advertising SDK.
3. Make sure you're using the [latest version of the Yandex Mobile Ads SDK](https://boost.yandex.com/doc/en/ad-monetization/dev/platforms.md), and if you're using mediation, the latest version of the [unified build](https://boost.yandex.com/doc/en/ad-monetization/dev/platforms.md).
<!-- endsource: en/ad-monetization/dev/_includes/pre-ios.md -->

## Implementation {#implement}

Key steps to integrate an adaptive sticky banner:

- Create an `BannerAdView` class instance.
- Implement the delegate methods.
- Load the ad.
- Pass [additional settings](https://boost.yandex.com/doc/en/ad-monetization/dev/ios/target-adfox.md) if you're using Adfox.
- Receive the ad in the delegate method and render it.

## Features of adaptive sticky banner integration {#features}

1. All calls to Yandex Mobile Ads SDK methods must be made from the main thread.

2. We strongly advise against attempting to load a new ad when receiving an error in the `func bannerAdViewDidFailLoading(_ bannerAdView: BannerAdView, error: Error)` delegate method. If you need to load an ad from `func adViewDidFailLoading(_ adView: YMAAdView, error: Error)`, restrict ad load retries to avoid recurring failed ad requests due to network connection constraints.

3. To make sure your adaptive sticky banners work correctly, use [Auto Layout](https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/AutolayoutPG/AnatomyofaConstraint.html). Using a fixed-sized frame for the view may result in incorrect ad rendering.

4. Adaptive sticky banners work best when utilizing the full available width. In most cases, this will be the full width of the device screen. Be sure to consider the padding parameters set in your app and the display's safe area.

5. Adaptive sticky banners are designed for placement in scrollable content. Their height can be the same as the device screen or limited by the maximum height, depending on the API.

6. To get the ad size, use the `BannerAdSize.sticky(containerWidth: CGFloat)` method, passing the available ad container width as an argument.

7. The `BannerAdSize` object, which is calculated using the `BannerAdSize.stickySize(withContainerWidth: CGFloat)` method, contains constant ad width and height values for identical devices. When testing your app's layout on a specific device, you can be sure that the ad size for that device will remain the same.

8. The height of an adaptive sticky banner never exceeds 15% of the screen height and can't be less than 50 dp.

## Creating an `BannerAdView` class instance

To display banner ads, you need to create an instance of the `BannerAdView` class and pass the ad size to it. You also need to define a delegate for `BannerAdView` by implementing the `BannerAdViewDelegate` protocol for your class.

Ads are calculated for devices using the `BannerAdSize.sticky(containerWidth:)` SDK method. As an argument, pass the maximum permissible width of the ad container. We recommend using the entire width of the device screen or the width of the parent container. Be sure to consider the padding parameters set in your app and the display's safe area.

You will also need the ad unit ID (adUnitId) from the Boost interface.

Example of creating an `BannerAdView` instance in the View Controller:

```swift
final class StickyBannerViewController: UIViewController {
        private lazy var bannerAdView: BannerAdView = {
        let width = view.safeAreaLayoutGuide.layoutFrame.width
        let adSize = BannerAdSize.sticky(containerWidth: width)

        let bannerAdView = BannerAdView(adSize: adSize)
        bannerAdView.delegate = self
        bannerAdView.translatesAutoresizingMaskIntoConstraints = false
        return bannerAdView
    }()
}

extension StickyBannerViewController: BannerAdViewDelegate {
    func bannerAdViewDidLoad(_ bannerAdView: BannerAdView) {
        // Ad loaded successfully
    }

    func bannerAdViewDidFailLoading(_ bannerAdView: BannerAdView, error: Error) {
        // Load error
    }
}
```

## Loading ads

Once `BannerAdView` is created, the ad needs to be loaded.

To notify when ads load or fail to load and to track the adaptive sticky banner's life cycle, you need to set delegate properties for the `BannerAdView` class object and implement the `BannerAdViewDelegate` protocol.

You can expand ad request parameters through `AdRequest`, by passing user interests, contextual page data, location, or other additional info. Adding extra context to ad requests can greatly improve ad relevance. To learn more, see [Ad targeting](https://boost.yandex.com/doc/en/ad-monetization/dev/ios/target.md).

The following example shows how to load an adaptive sticky banner. After successful loading, the `unc bannerAdViewDidLoad(_ bannerAdView: BannerAdView)` method of the `BannerAdViewDelegate` delegate will be called:

```swift
final class StickyBannerViewController: UIViewController {
    private lazy var bannerAdView: BannerAdView = {
        let width = view.safeAreaLayoutGuide.layoutFrame.width
        let adSize = BannerAdSize.sticky(containerWidth: width)

        let bannerAdView = BannerAdView(adSize: adSize)
        bannerAdView.delegate = self
        bannerAdView.translatesAutoresizingMaskIntoConstraints = false
        return bannerAdView
    }()

    func loadAd() {
        let request = AdRequest(adUnitID: "R-M-XXXXX-YY")
        bannerAdView.loadAd(with: request)
    }
}
```

## Ad display

After successfully loading the ad, you need to render it. There are two ways to do that:

{% list tabs %}

- Using autolayout constraints

  Take the adView you got from the delegate method and add it to your container. Then add autolayout constraints so the banner is displayed where you want it.

  ```swift
  final class StickyBannerViewController: UIViewController {
    private lazy var bannerAdView: BannerAdView = {
        let width = view.safeAreaLayoutGuide.layoutFrame.width
        let adSize = BannerAdSize.sticky(containerWidth: width)

        let bannerAdView = BannerAdView(adSize: adSize)
        bannerAdView.delegate = self
        bannerAdView.translatesAutoresizingMaskIntoConstraints = false
        return bannerAdView
    }()

    func showAd() {
        view.addSubview(adView)
        NSLayoutConstraint.activate([
            adView.topAnchor.constraint(equalTo: loadButton.bottomAnchor, constant: 100),
            adView.centerXAnchor.constraint(equalTo: view.centerXAnchor)
        ])
    }
  }
  ```

- Using the `displayAtTop(in:)` and `displayAtBottom(in:)` methods

  The banners will be added on top of all the controller's views, centered horizontally, and placed at the top or bottom of the container, respectively.

  ```swift
  final class StickyBannerViewController: UIViewController {
    private lazy var bannerAdView: BannerAdView = {
        let width = view.safeAreaLayoutGuide.layoutFrame.width
        let adSize = BannerAdSize.sticky(containerWidth: width)

        let bannerAdView = BannerAdView(adSize: adSize)
        bannerAdView.delegate = self
        bannerAdView.translatesAutoresizingMaskIntoConstraints = false
        return bannerAdView
    }()

    func showAd() {
        bannerAdView.displayAdBottom(in: view)
    }
  }
  ```

{% endlist %}

## Testing adaptive sticky banner integration {#test}

### Using demo ad units for ad testing

<!-- source: en/ad-monetization/dev/_includes/test-ios-inline-banner.md -->
Use test ads to check your ad integration and the app itself. To make sure that test ads are returned for each ad request, you can use a special demo ad placement ID.

Demo adUnitId: `demo-banner-yandex`.

{% note warning %}

Before publishing your app in the store, make sure to replace the demo placement ID with the real ID you obtained in the Boost interface.

{% endnote %}

For the list of all available demo ad placement IDs, see [Demo ad units for testing](https://boost.yandex.com/doc/en/ad-monetization/dev/ios/demo-blocks.md).
<!-- endsource: en/ad-monetization/dev/_includes/test-ios-inline-banner.md -->

### Testing ad integration

<!-- source: en/ad-monetization/dev/_includes/test-integration-ios.md -->
You can test your ad integration using the native Console tool.

To view detailed logs, call the `YandexAds` class's `enableLogging` method.

```swift
YandexAds.enableLogging()
```

To view SDK logs, go to the Console tool and set `Subsystem = com.mobile.ads.ads.sdk`. You can filter logs by category or error level.

If you're having problems integrating ads, you'll get a detailed report on the issues and recommendations for how to fix them.

<img src= "https://yastatic.net/s3/doc-binary/src/dev/mobile-ads/common/integration-ios-2.png">
<!-- endsource: en/ad-monetization/dev/_includes/test-integration-ios.md -->

## Additional resources {#resources}

* <!-- source: en/ad-monetization/dev/_includes/github-pubdev-links.md -->
  Link to [GitHub](https://github.com/yandexmobile/yandex-ads-sdk-ios/blob/master/Examples/YandexMobileAdsExample/YandexMobileAdsExample/Yandex/Banner/StickyBannerViewController.swift).
  <!-- endsource: en/ad-monetization/dev/_includes/github-pubdev-links.md -->
