From 7c666378d77fc1746cb089c273a4bacfad995356 Mon Sep 17 00:00:00 2001 From: lpw <812862340@qq.com> Date: Thu, 11 Sep 2025 09:04:13 +0800 Subject: [PATCH] 提交版本 4.7.0 --- frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADVideoController.h | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADVideoController.h b/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADVideoController.h index 4accc97..02093a7 100644 --- a/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADVideoController.h +++ b/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADVideoController.h @@ -15,17 +15,23 @@ /// 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. +NS_SWIFT_NAME(VideoController) @interface GADVideoController : NSObject /// Delegate for receiving video notifications. @property(nonatomic, weak, nullable) id<GADVideoControllerDelegate> delegate; -/// Indicates whether the video is muted. -@property(nonatomic, readonly) BOOL isMuted; +/// Indicates whether the video is muted. Set to YES to mute the video. Set to NO to allow the video +/// to play sound. The setter doesn't do anything if -customControlsEnabled returns NO. +@property(nonatomic, getter=isMuted) BOOL muted; -/// Mute or unmute video. Set to YES to mute the video. Set to NO to allow the video to play sound. -/// Doesn't do anything if -customControlsEnabled returns NO. -- (void)setMute:(BOOL)mute; +/// Indicates whether video custom controls (for example, play/pause/mute/unmute) are enabled. +@property(nonatomic, readonly, getter=areCustomControlsEnabled) + BOOL customControlsEnabled NS_SWIFT_NAME(areCustomControlsEnabled); + +/// Indicates whether video click to expand behavior is enabled. +@property(nonatomic, readonly, getter=isClickToExpandEnabled) + BOOL clickToExpandEnabled NS_SWIFT_NAME(isClickToExpandEnabled); /// Play the video. Doesn't do anything if the video is already playing or if /// -customControlsEnabled returns NO. @@ -38,11 +44,5 @@ /// Stops the video and displays the video's first frame. Call -play to resume playback at the start /// of the video. Doesn't do anything if -customControlsEnabled returns NO. - (void)stop; - -/// Indicates whether video custom controls (for example, play/pause/mute/unmute) are enabled. -- (BOOL)customControlsEnabled; - -/// Indicates whether video click to expand behavior is enabled. -- (BOOL)clickToExpandEnabled; @end -- Gitblit v1.8.0