// // MAAdViewAdapter.h // AppLovinSDK // // Created by Thomas So on 8/10/18. // Copyright © 2019 AppLovin Corporation. All rights reserved. // #import #import #import @class MAAdFormat; NS_ASSUME_NONNULL_BEGIN /** * This protocol defines methods for ad view-based adapters (banners, mrecs, and leaders). */ @protocol MAAdViewAdapter /** * Schedule loading of the next ad view ad. * * This is called once per adapter. * * @param parameters Parameters used to load the ads. * @param adFormat Format of the ad to load. * @param delegate Delegate to be notified about ad events. */ - (void)loadAdViewAdForParameters:(id)parameters adFormat:(MAAdFormat *)adFormat andNotify:(id)delegate; @end NS_ASSUME_NONNULL_END