• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 如何在委托(delegate)中加载插页式广告并在另一个 View Controller 中显示?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 14:02:45 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我试图在应用程序午餐后立即请求 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap