Admob广告的添加

17 篇文章 0 订阅

admon广告添加的步骤和注意事项:

1、首先下载admob的API,主要包括下图中的文件

2、直接加载到程序中

3、添加以下几个依赖库

SystemConfiguration.framwork

MessageUI.framework

AdSupport.framework

storeKit.framework

4、在viewcontroller中添加

-(void)addAdMob
{
    CGSize size = self.view.frame.size;
    
    
    myBanner = [[[GADBannerView alloc] initWithAdSize:kGADAdSizeSmartBannerPortrait] autorelease];
    //指定广告的“单位标识符”。这是您的AdMob的发布者
    
    myBanner.frame = CGRectMake(size.width/2 - myBanner.frame.size.width/2,size.height-myBanner.frame.size.height,
                                myBanner.frame.size.width,myBanner.frame.size.height);
    
    myBanner.adUnitID = @"a1515917b09dbda";
    
    myBanner.rootViewController = self;
    [self.view addSubview:myBanner];
    
    // Initiate a generic request to load it with an ad.
    GADRequest *request = [GADRequest request];
    
#if TARGET_IPHONE_SIMULATOR
    request.testing = YES;
#endif
    
    NSLog(@"loadRequest start");
    [myBanner loadRequest:request];
    NSLog(@"loadRequest end");
}

如果是用cocos2d

-(void)addAdMob
{
    CGSize size = [[CCDirector sharedDirector] winSize];
    
    
    myBanner = [[[GADBannerView alloc] initWithAdSize:kGADAdSizeSmartBannerPortrait] autorelease];
    //指定广告的“单位标识符”。这是您的AdMob的发布者
    
    myBanner.frame = CGRectMake(size.width/2 - myBanner.frame.size.width/2,size.height-myBanner.frame.size.height,
                                myBanner.frame.size.width,myBanner.frame.size.height);
    
    myBanner.adUnitID = @"a1515917b09dbda";
    
    AppController *appDelegate = (AppController*) [[UIApplication sharedApplication] delegate];
    [myBanner setRootViewController:[appDelegate navController]];
    [[CCDirector sharedDirector].view addSubview:myBanner];
    
    // Initiate a generic request to load it with an ad.
    GADRequest *request = [GADRequest request];
    
#if TARGET_IPHONE_SIMULATOR
    request.testing = YES;
#endif
    
    NSLog(@"loadRequest start");
    [myBanner loadRequest:request];
    NSLog(@"loadRequest end");
}
 
5、在初始化函数中,添加[self addmob] 

6、设置编译选项,如图

好了,现在应该可以正常运行了,如果仍有问题,请查看官方说明

https://developers.google.com/mobile-ads-sdk/docs/admob/mediation#ios-linker

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值