iOSアプリケーションにAdMobを追加したいと思います。
私はそのチュートリアルに従いました:
https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals?hl=en#ios
しかし、サンプルプロジェクトを使用したり、そのコードを使用してiOSプロジェクトにソースコードを追加したりしても、エラーが1つあります。
*キャッチされなかった例外'NSInvalidArgumentException'が原因でアプリを終了しています、理由:'-[GADBannerView private]:認識されないセレクターがインスタンス0x1727d0に送信されました'
そのソースコードで:
ViewController.h
#import <UIKit/UIKit.h>
#import "GADBannerView.h"
@interface ViewController : UIViewController{
GADBannerView *bannerView_;
}
@end
と
ViewController.m
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Create a view of the standard size at the bottom of the screen.
bannerView_ = [[GADBannerView alloc]
initWithFrame:CGRectMake(0.0,
self.view.frame.size.height -
GAD_SIZE_320x50.height,
GAD_SIZE_320x50.width,
GAD_SIZE_320x50.height)];
// Specify the ad's "unit identifier." This is your AdMob Publisher ID.
bannerView_.adUnitID = @"MYID";
// Let the runtime know which UIViewController to restore after taking
// the user wherever the ad goes and add it to the view hierarchy.
bannerView_.rootViewController = self;
[self.view addSubview:bannerView_];
// Initiate a generic request to load it with an ad.
[bannerView_ loadRequest:[GADRequest request]];
}
- (void)viewDidUnload
{
[super viewDidUnload];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
} else {
return YES;
}
}
@end