0

そこで、YouTube で Geeky Lemon のチュートリアル ( https://www.youtube.com/watch?v=0NkgmhpJovM&list=UU6-UA1FoMnbO2LCLWPCM9aA&index=27 ) を見て、アプリに iAd を実装する方法について説明します。私の問題は、すべてのコードが終了し、AdBannerView をデリゲートに接続しようとすると、ストーリーボードで AdBannerView を選択すると何らかの理由で右側のインスペクターにデリゲート接続が表示されることですが、何もありません。それを接続する方法。これが私のコードです。私の .h ファイル:

#import <iAd/iAd.h>
#import <UIKit/UIKit.h>

@interface FirstViewController : UIViewController <MFMessageComposeViewControllerDelegate,    ADBannerViewDelegate>         {
}

私の .m ファイル:

#import "FirstViewController.h"


@interface FirstViewController ()

@end

@implementation FirstViewController 

- (void) bannerViewDidLoadAd:(ADBannerView *)banner{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1];
[banner setAlpha:1];
[UIView commitAnimations];

}

- (void) bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1];
[banner setAlpha:0];
[UIView commitAnimations];
}

要約すると、ストーリーボードを使用しているときにバナーをファイル所有者に接続する方法を知る必要がありますか? 助けていただけませんか。どんな助けでも大歓迎です。ありがとうございます。

4

1 に答える 1