将AdMob加入iOS应用中

AdMob地址:http://www.google.cn/ads/admob/,关于帐号的申请以及设定,这里就不介绍了。

当在AdMob中添加了一个iOS的应用后,可以下载AdMob iOS SDK。

1、在Xcode中添加一个名为AdMob的Group,并将AdMob iOS SDK中的文件拖到AdMob这个Group中。

2、将AudioToolbox.framework、MessageUI.framework、SystemConfiguration.framework加入frameworks中。

3、AdMobViewController.h文件:

#import <UIKit/UIKit.h>
#import "GADBannerView.h"

@interface AdMobViewController : UIViewController {
	GADBannerView *banner;
}

@end

4、AdMobViewController.m文件:

#import "AdMobViewController.h"

@implementation AdMobViewController

- (void)viewDidLoad {
    [super viewDidLoad];
	banner = [[GADBannerView alloc] initWithFrame:CGRectMake(0, self.view.frame.size.height - GAD_SIZE_320x50.height, GAD_SIZE_320x50.width, GAD_SIZE_320x50.height)];
	banner.adUnitID = @"";
	banner.rootViewController = self;
	[self.view addSubview:banner];
	[banner loadRequest:[GADRequest request]];	
}

- (void)dealloc {
    [banner release];
    [super dealloc];
}

@end