菜鸟教程小白 发表于 2022-12-13 10:23:46

ios - 在横幅广告之外添加 AdMob 插页式广告 (IOS)


                                            <p><p>我的 iOS 应用程序中的横幅广告已成功运行,但由于无法摆脱错误,我正在努力添加插页式广告的代码:-“'GADInterstitial' 没有可见的@interface 声明选择器'initWithAdUnitId:'” .</p>

<p>我是一名新手开发人员,我确信这是我犯的一个简单错误。有人可以帮忙吗?</p>

<p>我的 viewcontroller.h 看起来像这样:-</p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;
#import &#34;GADBannerView.h&#34;
#import &#34;GADRequest.h&#34;
@import GoogleMobileAds;

@class GADBannerView, GADRequest;
@class GADInterstitial, GADRequest;

@interface GenTeamViewController : UIViewController
    &lt;GADBannerViewDelegate, GADInterstitialDelegate&gt; {
    GADBannerView *bannerView_;
    GADInterstitial *interstitialView_;
    NSString *teamName;
    UILabel *teamLabel;
    }


@property(nonatomic, strong) GADInterstitial *interstitial;

@property (nonatomic, strong)GADBannerView *bannerView;
-(GADRequest *)createRequest;
,
,
,
@end
</code></pre>

<p> ViewController.m 看起来像:-</p>

<pre><code>- (void)viewDidLoad
{
    ;

    self.interstitial = [ initWithAdUnitID:@&#34;xxxxxxxxx&#34;];
    GADRequest *request = ;
// Requests test ads on test devices.
    request.testDevices = @[@&#34;xxxxxxxxx&#34;];
    ;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>确保您的 AdMob SDK 版本为 7.2.1 或更高版本。 <a href="https://developers.google.com/admob/ios/rel-notes" rel="noreferrer noopener nofollow">release notes</a>对于 7.2.1 状态:</p>

<blockquote>
<p>Added <code>GADInterstitial initWithAdUnitID:</code> and deprecated <code>GADInterstitial
init</code>.</p>
</blockquote>

<p>所以 <code>initWithAdUnitID:</code> 不适用于 7.2.1 之前的 AdMob SDK 版本。</p>

<p>另外,从头文件中删除 <code>#import "GADBannerView.h"</code> 和 <code>#import "GADRequest.h"</code>。您已经使用 <code>@import GoogleMobileAds;</code> 导入了整个框架。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在横幅广告之外添加 AdMob 插页式广告 (IOS),我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32428098/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32428098/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在横幅广告之外添加 AdMob 插页式广告 (IOS)