Alignement IOS iAD


Intégration IOS iAD


Introduction

IAD est une plateforme publicitaire lancée par Apple, qui peut aider les développeurs à générer des revenus grâce aux applications.

Exemples d'étapes

1. Créez une application simple basée sur View

2. Sélectionnez le fichier de projet, puis sélectionnez la cible, puis sélectionnez le framework et ajoutez iAd.framework.

3. Mettez à jour ViewController.h comme indiqué ci-dessous

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

4. Mettez à jour ViewController.m comme indiqué ci-dessous

#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

Exécutez l'application et obtenez le résultat suivant :

iAdOutput