3

我想在纵向屏幕底部添加 admob“智能横幅”。但是代码在屏幕顶部显示了添加。这是我的代码

    cocos2d::CCSize size = cocos2d::CCDirector::sharedDirector()->getWinSize();
            CGPoint origin = CGPointMake(size.width,0.0);
    bannerView_ = [[[GADBannerView alloc]
                      initWithAdSize:kGADAdSizeSmartBannerPortrait
                      origin:origin] autorelease];

无论我如何更改广告显示在屏幕顶部的来源。任何帮助都是高度赞赏的。谢谢

4

2 回答 2

2

这就是我在屏幕底部显示广告的方式。

    GADBannerView* bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeSmartBannerPortrait];

//For Positioning
    float winHeight = viewController.view.frame.size.height;
    float winWidth = viewController.view.frame.size.width;
    //BannerView y-center is half of it's total height, and co-ordinates have to be calculated with TOP-Left as (0,0). Multiplied by 0.5 for y-center of banner view.
    bannerView_.center=CGPointMake(winWidth/2, winHeight - 0.50 * bannerView_.frame.size.height);

    //bannerView_.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;

    // Let the runtime know which UIViewController to restore after taking
    // the user wherever the ad goes and add it to the view hierarchy.
    bannerView_.rootViewController = viewController;
    [viewController.view addSubview:bannerView_];




GADRequest * request = [GADRequest request];
request.testDevices = [NSArray arrayWithObjects:
                       GAD_SIMULATOR_ID,                               // Simulator
                       nil];
// Initiate a generic request to load it with an ad.
[bannerView_ loadRequest:request];
于 2014-02-10T10:53:30.100 回答
0

I did it this way : I create the banner without origin. Then when the ad is loaded, the - (void)adViewDidReceiveAd:(GADBannerView *)bannerView delegate method gets fired, and in it I animate the banner to slide down from the top of the screen. Here is the code :

- (void)adViewDidReceiveAd:(GADBannerView *)bannerView {

    self.adBannerView = bannerView;

    [UIView animateWithDuration:0.5 delay:0.1 options: UIViewAnimationCurveEaseOut animations:^
         {
             CGSize s = [[CCDirector sharedDirector] winSize];

             CGRect frame = self.adBannerView.frame;

             frame.origin.y = 0;

             self.adBannerView.frame = frame;
         }
                         completion:^(BOOL finished)
         {
         }];
}
于 2014-02-08T14:43:57.670 回答