OStack程序员社区-中国程序员成长平台

标题: ios - 如何在委托(delegate)中加载插页式广告并在另一个 View Controller 中显示? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 14:02
标题: ios - 如何在委托(delegate)中加载插页式广告并在另一个 View Controller 中显示?

我试图在应用程序午餐后立即请求 Admob 插页式广告,因此我尝试在 appDelegate.m 中实现,但是当我稍后尝试在另一个 View Controller 中显示它时,我收到一个错误,即插页式标识符在此 View Controller 中找不到。

这是我正在使用的代码

在 AppDelegate.m 中

 @property(nonatomic, strong) GADInterstitial *interstitial;

- (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions {

    // Interstitial Ad
    self.interstitial = [[GADInterstitial alloc] initWithAdUnitID"ca-app-pub-1232434xxxxxxx"];
    GADRequest *request2 = [GADRequest request];
    request2.testDevices = @[kGADSimulatorID];
    [self.interstitial loadRequest:request2];

然后在任何 viewcontroller.m 中

- (void)loadInterstitialAd {
    if ([self.interstitial isReady]) {
        [self.interstitial presentFromRootViewController:self];
        [timer invalidate];
        timer  = nil;
    }
}

我似乎无法将标识符或函数从委托(delegate)传递给任何 View Controller 。

非常感谢您的帮助。



Best Answer-推荐答案


解决方案很简单,对我有用。

将 AppDelegate 设为 GADInterstitial 的代表。在 AppDelegate header 中添加 GADInterstitialDelegate。

在 AppDelegate 类中添加这些函数。 AppDelegate 中还有 gViewController 变量。每当您将新的 viewControler 更改为此时,分配它。从 AppDelegate 类调用 showAdmobFullScreenAds。

-(void)showAdmobFullScreenAds
{
    GADInterstitial * interstitial_ = [[GADInterstitial alloc] initWithAdUnitID:MY_ADMOB_FULLSCREEN_UNIT_ID];
    interstitial_.delegate = self;
    [interstitial_ loadRequest:[GADRequest request]];

}

- (void)interstitialDidReceiveAdGADInterstitial *)interstitial
{
    [interstitial presentFromRootViewController:self.gViewController];
}

- (void)interstitialGADInterstitial *)interstitial didFailToReceiveAdWithErrorGADRequestError *)error
{
    printf("Error\n");
}

从其他 ViewControllers 中,将下面的函数放在所有其他 viewController 中

 override func viewDidAppear(animated: Bool) {
    super.viewDidAppear(animated)

    let App = UIApplication.sharedApplication().delegate as! AppDelegate
    App.gViewController = self;
 }

关于ios - 如何在委托(delegate)中加载插页式广告并在另一个 View Controller 中显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35098785/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4