AdMob - "Ad wasn't ready"错误与真实的单元ID(Swift)
创始人
2024-07-27 19:30:16
0

在 Swift 中解决 "Ad wasn't ready" 错误的方法如下:

首先,确保你已正确设置了 AdMob,并且已经在项目中导入了 GoogleMobileAds 框架。

然后,在你的视图控制器中,你需要设置一个 GADInterstitialDelegate 来处理广告加载完成和失败的事件。示例如下:

import UIKit
import GoogleMobileAds

class ViewController: UIViewController, GADInterstitialDelegate {

    var interstitial: GADInterstitial!

    override func viewDidLoad() {
        super.viewDidLoad()
        // 在 viewDidLoad 中初始化 interstitial
        interstitial = createAndLoadInterstitial()
    }

    func createAndLoadInterstitial() -> GADInterstitial {
        let interstitial = GADInterstitial(adUnitID: "YOUR_AD_UNIT_ID")
        interstitial.delegate = self
        let request = GADRequest()
        interstitial.load(request)
        return interstitial
    }

    // 在 GADInterstitialDelegate 中实现以下方法
    func interstitialDidReceiveAd(_ ad: GADInterstitial) {
        // 广告加载完成
        if ad.isReady {
            ad.present(fromRootViewController: self)
        }
    }

    func interstitial(_ ad: GADInterstitial, didFailToReceiveAdWithError error: GADRequestError) {
        print("加载广告失败: \(error.localizedDescription)")
    }

    func interstitialDidDismissScreen(_ ad: GADInterstitial) {
        // 当广告消失后,重新加载下一个广告
        interstitial = createAndLoadInterstitial()
    }
    
    // ... 其他代码 ...
}

在上面的代码中,YOUR_AD_UNIT_ID 需要被替换为你的真实广告单元 ID。

当进行初始化和加载广告时,确保你已经正确设置了 AdMob 应用 ID 和广告单元 ID。然后,通过调用 createAndLoadInterstitial 方法来创建和加载插页式广告。

interstitialDidReceiveAd 方法中,我们检查广告是否已准备好显示,如果是,我们调用 present(fromRootViewController:) 方法来显示广告。

interstitial(_:, didFailToReceiveAdWithError:) 方法中,我们处理广告加载失败的情况,并输出错误信息。

最后,在 interstitialDidDismissScreen 方法中,我们处理广告消失后的事件,并调用 createAndLoadInterstitial 方法来加载下一个广告。

这样,你就可以正确处理 "Ad wasn't ready" 错误,并显示广告。

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...
apache子目录二级域名 Apache是一款流行的Web服务器软件,它允许用户使用子目录作为二级域名。使用Apache作为服务...