12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // AdmobNative.h
- // XenonSDK
- //
- // Created by fq on 2020/12/24.
- // Copyright © 2020 SAGESSE. All rights reserved.
- //
- #import "AdNative.h"
- #import <GoogleMobileAds/GoogleMobileAds.h>
- #import <UIKit/UIKit.h>
- #import "TestNativeAdView.h"
- @interface AdmobNative : AdNative
- //是否加载好
- @property (nonatomic, assign)BOOL ready;
- //是否需要显示
- @property (nonatomic, assign)BOOL isShow;
- //Container that holds the native ad.
- @property (nonatomic,strong)UIView *nativeAdPlaceholder;
- //Native Advanced ad unit ID for testing.
- @property (nonatomic,strong)NSString *AdUnit;
- @property(nonatomic, strong) GADAdLoader *adLoader;
- /// The native ad view that is being presented.
- //@property(nonatomic, strong) GADNativeAdView *nativeAdView;
- @property(nonatomic, strong) TestNativeAdView *nativeAdView;
- /// The height constraint applied to the ad view, where necessary.
- @property(nonatomic, strong) NSLayoutConstraint *heightConstraint;
- @end
|