GoogleMobileAds Framework Reference

  • The GADMAdNetworkConnector protocol is used by ad network adapters to interact with the mediation SDK.

  • The connector object provides necessary information for ad requests and allows callbacks to the mediation SDK.

  • Methods are available to obtain a UIViewController for presenting modal views, get the preferred ad volume, and check if the ad should be muted.

  • Adapter callbacks are used to inform the connector about events such as ad failure, receiving different ad types, and ad clicks.

  • The protocol also includes methods for handling ad events like the presentation and dismissal of full screen modals and interstitials.

GADMAdNetworkConnector

@protocol GADMAdNetworkConnector <GADMediationAdRequest>

Ad network adapters interact with the mediation SDK using an object that implements the GADMAdNetworkConnector protocol. The connector object can be used to obtain necessary information for ad requests, and to call back to the mediation SDK on ad request returns and user interactions.

  • When you need to show a landing page or any other modal view, such as when a user clicks or when your Ads SDK needs to show an interstitial, use this method to obtain a UIViewController that you can use to show your modal view. Call the -presentViewController:animated:completion: method of the returned UIViewController.

    Declaration

    Swift

    func viewControllerForPresentingModalView() -> UIViewController!

    Objective-C

    - (UIViewController *)viewControllerForPresentingModalView;
  • Returns the preferred ad volume as a fraction of system volume (0.0 to 1.0).

    Declaration

    Swift

    func adVolume() -> Float

    Objective-C

    - (float)adVolume;
  • Returns whether the ad should be muted.

    Declaration

    Swift

    func adMuted() -> Bool

    Objective-C

    - (BOOL)adMuted;