gpt4 book ai didi

ios - 卡在 google admob sdk 7

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:57:51 27 4
gpt4 key购买 nike

我已经实现了 google admob sdk 6.12,广告出现了,一切正常,几天后谷歌更新了 sdk 7,我再次导入了新的 sdk,但这次我无法使用 #import "GADInterstitial.h “ 每次我收到错误 #import "GADInterstitial.h"not found,导入所有框架但没有成功,如果我使用 @class GADInterstitial.h; 并使用它,则没有广告出现代码

- (void)viewDidLoad {
[super viewDidLoad];
self.interstitial = [[GADInterstitial alloc] init];
self.interstitial.adUnitID = Interstical_Unit_id;

GADRequest *request = [GADRequest request];
// Requests test ads on simulators.
request.testDevices = @[ GAD_SIMULATOR_ID ];
[self.interstitial loadRequest:request];
}
- (void)gameOver {
if ([self.interstitial isReady]) {
[self.interstitial presentFromRootViewController:self];
}
// Rest of game over logic goes here.
}

最佳答案

您不再需要导入 header ,只需使用它即可

@import GoogleMobileAds

此外,您不需要链接其他框架或将 -ObjC 添加到您的链接器标志。

关于ios - 卡在 google admob sdk 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28538330/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com