From 1e5242aa56dd1c52c537335ee56d7127d09b24de Mon Sep 17 00:00:00 2001 From: lpw <812862340@qq.com> Date: Thu, 11 Sep 2025 09:19:08 +0800 Subject: [PATCH] 提交版本 4.7.0 --- WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADNativeAd.h | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADNativeAd.h b/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADNativeAd.h index 4a65661..da08c6a 100644 --- a/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADNativeAd.h +++ b/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADNativeAd.h @@ -23,6 +23,7 @@ /// (see GADAdLoaderAdTypes.h) to the |adTypes| parameter in GADAdLoader's initializer method. If /// you request this ad type, your delegate must conform to the GADNativeAdLoaderDelegate /// protocol. +NS_SWIFT_NAME(NativeAd) @interface GADNativeAd : NSObject #pragma mark - Must be displayed if available @@ -71,8 +72,13 @@ /// Called when the ad is estimated to have earned money. Available for allowlisted accounts only. @property(nonatomic, nullable, copy) GADPaidEventHandler paidEventHandler; +/// An identifier for a placement in reporting. This property must be set prior to associating the +/// ad with a GADNativeAdView. +@property(nonatomic, readwrite) int64_t placementID; + /// Indicates whether custom Mute This Ad is available for the native ad. -@property(nonatomic, readonly, getter=isCustomMuteThisAdAvailable) BOOL customMuteThisAdAvailable; +@property(nonatomic, readonly, getter=isCustomMuteThisAdAvailable) + BOOL customMuteThisAdAvailable NS_SWIFT_NAME(isCustomMuteThisAdAvailable); /// An array of Mute This Ad reasons used to render customized mute ad survey. Use this array to /// implement your own Mute This Ad feature only when customMuteThisAdAvailable is YES. @@ -102,6 +108,7 @@ #pragma mark - Protocol and constants /// The delegate of a GADAdLoader object implements this protocol to receive GADNativeAd ads. +NS_SWIFT_NAME(NativeAdLoaderDelegate) @protocol GADNativeAdLoaderDelegate <GADAdLoaderDelegate> /// Called when a native ad is received. - (void)adLoader:(nonnull GADAdLoader *)adLoader didReceiveNativeAd:(nonnull GADNativeAd *)nativeAd; @@ -111,6 +118,7 @@ /// Base class for native ad views. Your native ad view must be a subclass of this class and must /// call superclass methods for all overridden methods. +NS_SWIFT_NAME(NativeAdView) @interface GADNativeAdView : UIView /// This property must point to the native ad object rendered by this ad view. -- Gitblit v1.8.0