使用cocos2d让我的iphone应用程序使用admob时遇到一些问题, 我按照这个答案:Admob banner integration in Cocos2d 2.0 / Admob banner in iphone games
它的工作方式几乎完美,但它给了我以下日志:
<Google> Must set the rootViewController property of GADBannerView before calling loadRequest:
从我看到的代码中有这个:
mBannerView.rootViewController = app.navController;
[app.navController.view addSubview:mBannerView];
// Initiate a generic request to load it with an ad.
[mBannerView loadRequest:[GADRequest request]];
这样接缝就好了,不是吗?