Wiki

Clone wiki

REACT native plugin / reloadConcreteInFeedBannerComponents

Overview

Reloads in-feed banner ads which have the matching indexes passed via the indexes parameter. The indexes are sorted by the order of attaching in-feed banner components to the UI.

Syntax

reloadConcreteInFeedBannerComponents(placementName, indexes)
placementName (required)

string. Name of the in-feed banner placement.

placementName (indexes)

int[]. Array containing indexes of the in-feed banner ads which should be loaded.

Examples

#!javascript

RNAatkit.reloadConcreteInFeedBannerComponents("InFeed", [0,2,4,5]);

Updated