iOS iADの統合


IOS iAD の統合


はじめに

IAD は、開発者がアプリケーションから収益を得るのに役立つ、Apple が立ち上げた広告プラットフォームです。

手順例

1. 単純なビュー ベースのアプリケーションを作成します

2. プロジェクト ファイルを選択し、ターゲットを選択して、フレームワークを選択して、iAd.framework を追加します。

3. 以下に示すように ViewController.h を更新します

#import <UIKit/UIKit.h>#import <iAd/iAd.h>@interface ViewController : UIViewController<ADBannerViewDelegate>{    ADBannerView *bannerView;}@end

4. 以下に示すように ViewController.m を更新します

#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad{    [super viewDidLoad];
    bannerView = [[ADBannerView alloc]initWithFrame:    CGRectMake(0, 0, 320, 50)];    // Optional to set background color to clear color    [bannerView setBackgroundColor:[UIColor clearColor]];    [self.view addSubview: bannerView];}- (void)didReceiveMemoryWarning{    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}#pragma mark - AdViewDelegates-(void)bannerView:(ADBannerView *)banner 
 didFailToReceiveAdWithError:(NSError *)error{    NSLog(@"Error loading");}-(void)bannerViewDidLoadAd:(ADBannerView *)banner{    NSLog(@"Ad loaded");}-(void)bannerViewWillLoadAd:(ADBannerView *)banner{    NSLog(@"Ad will load");}-(void)bannerViewActionDidFinish:(ADBannerView *)banner{    NSLog(@"Ad did finish");}@end

Output

アプリケーションを実行して、次の出力:

iAdOutput