菜鸟教程小白 发表于 2022-12-13 01:19:02

ios - 从后台进入前台时无法显示 admob 插页式广告


                                            <p><p>使用 iOS 示例项目 2.5:<a href="http://google-mobile-dev.googlecode.com/files/InterstitialExample_iOS_2.5.zip" rel="noreferrer noopener nofollow">http://google-mobile-dev.googlecode.com/files/InterstitialExample_iOS_2.5.zip</a> </p>

<p>在 <code>MainController.m</code> 中,我添加了两个方法来调用 <code>showInterstitial</code> 以便每次当应用程序从后台进入前台时,例如</p>

<pre><code>- (void) viewDidLoad {
       [ addObserver:self selector:@selector(appWillEnterForegroundNotification) name:UIApplicationWillEnterForegroundNotification object:nil];
}

- (void) appWillEnterForegroundNotification{      
    ;
}
</code></pre>

<p>第一种方法是为 ViewController 注册回调以接收进入前台通知,第二种方法在发生这种情况时调用 <code>showInterstitial</code> 方法。我可以看到方法 <code>showInterstitial</code> 确实被调用并且请求确实被触发,但是没有调用成功或错误回调。</p>

<p>有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这可能不是展示插页式广告的合适时机。您希望应用程序再次处于事件状态,而不是即将处于事件状态。 </p>

<p>从 <code>-(void)applicationDidBecomeActive:(UIApplication *)application</code></p> 试试</p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从后台进入前台时无法显示 admob 插页式广告,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15141968/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15141968/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从后台进入前台时无法显示 admob 插页式广告