AppDelegate のみに実装され、すべての画面で使用できるように iAd を実装するにはどうすればよいでしょうか。
appDelegate にコードを配置しました。各ビュー コントローラーでコードを記述する必要がありますか?
AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[self addiAd];
NSLog(@"window subview : %@",self.window.subviews); //Here it shows no subview
return YES;
}
-(void)addiAd
{
self.adView.delegate = self;
self.adView.requiredContentSizeIdentifiers = [NSSet setWithObjects:ADBannerContentSizeIdentifierLandscape,ADBannerContentSizeIdentifierPortrait, nil];
self.adView.currentContentSizeIdentifier = ADBannerContentSizeIdentifierPortrait;
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
[self setBannerFrame:orientation];
self.adView = [[ADBannerView alloc] init];
self.adView.frame = CGRectMake(0, 938, 768, 66);
[self.window addSubview:self.adView];
}
-(void)removeiAd
{
[self.adView removeFromSuperview];
}
-(void)setBannerFrame:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight) {
[self.adView setCurrentContentSizeIdentifier:ADBannerContentSizeIdentifierLandscape];
self.adView.frame = CGRectMake(0, 634, 320, 50);
}
else {
[self.adView setCurrentContentSizeIdentifier:ADBannerContentSizeIdentifierPortrait];
self.adView.frame = CGRectMake(0, 890, 480, 32);
}
}
そのすべてのデリゲート メソッドも AppDelegate.m に実装されています。
私の次のステップは何ですか?私は何が間違っているか、欠けていますか?