iOS:整合iAd廣告

來源:互聯網
上載者:User

在iPhone程式中整合廣告,管他能不能賺錢,不放上一個iAd就心有不甘。

參考了下面這篇文章:

http://bees4honey.com/blog/tutorial/how-to-add-iad-banner-in-iphoneipad-app/

還參考這個Integrating iAds into an iOS 4 iPad App (Xcode 4)教程。

 

(1)加上iAd架構

在項目設定裡的Build Phases的Link Binary With Libraries,加上iAd.Framework。

(2)

在xib介面裡拖入一個ADBannerView

(3)修改ViewController的.h檔案

#import <iAd/iAd.h>

加上委託

@interface myViewController : UIViewController <ADBannerViewDelegate>

加上輸出口

IBOutlet ADBannerView *adView;

BOOL bannerIsVisible;

 

@property (nonatomic, retain) ADBannerView *adView;

@property (nonatomic, assign) BOOL bannerIsVisible;

 

 

(4)修改ViewController的.m檔案

在viewDidLoad方法裡:

adView.requiredContentSizeIdentifiers = [NSSet setWithObject:ADBannerContentSizeIdentifierPortrait];

adView.currentContentSizeIdentifier = ADBannerContentSizeIdentifierPortrait;

adView.delegate = self;

 

在viewDidUnload方法裡:

adView.delegate = nil;

 

另外:

為了防止iPhone網路異常時,iAd顯示不出來時是一個空白區,可以在這2個方法再做點工作。

-(void) bannerViewDidLoadAd:(ADBannerView *)banner

{

  if(!self.bannerIsVisible)

  {

    [UIView beginAnimations:@"animateAdBannerOn"  context:NULL];   

    banner.frame = CGRectOffset(banner.frame, 0, -100);

    [UIView commitAnimations];

    self.bannerIsVisible = YES;

  }

}

 

-(void) bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error

{

  if(self.bannerIsVisible)

  {

    [UIView beginAnimations:@"animateAdBannerOff"  context:NULL];

    banner.frame = CGRectOffset(banner.frame, 0, 100);

    [UIView commitAnimations];

    self.bannerIsVisible = NO;

  }

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.