GoogleMobileAds Framework Reference

GADVideoController

@interface GADVideoController : NSObject

The video controller class provides a way to get the video metadata and also manages video content of the ad rendered by the Google Mobile Ads SDK. You don’t need to create an instance of this class. When the ad rendered by the Google Mobile Ads SDK loads video content, you may be able to get an instance of this class from the rendered ad object.

  • Delegate for receiving video notifications.

    Declaration

    Objective-C

    @property (readwrite, nonatomic, nullable) id<GADVideoControllerDelegate>
        delegate;
  • Mute or unmute video. Set to YES to mute the video. Set to NO to allow the video to play sound.

    Declaration

    Objective-C

    - (void)setMute:(BOOL)mute;
  • Play the video. Doesn’t do anything if the video is already playing.

    Declaration

    Objective-C

    - (void)play;
  • Pause the video. Doesn’t do anything if the video is already paused.

    Declaration

    Objective-C

    - (void)pause;
  • Stops the video and displays the video’s first frame. Call -play to resume playback at the start of the video. Contact your account manager to enable this feature.

    Declaration

    Objective-C

    - (void)stop;
  • Returns a Boolean indicating if the receiver has video content.

    Declaration

    Objective-C

    - (BOOL)hasVideoContent;
  • Returns the video’s aspect ratio (width/height) or 0 if no video is present.

    Declaration

    Objective-C

    - (double)aspectRatio;
  • Indicates whether video custom controls (i.e. play/pause/mute/unmute) are enabled.

    Declaration

    Objective-C

    - (BOOL)customControlsEnabled;
  • Indicates whether video click to expand behavior is enabled.

    Declaration

    Objective-C

    - (BOOL)clickToExpandEnabled;