iOS 7 iAd cocos2d deprecated

拟墨画扇 提交于 2019-11-28 12:59:06

Try this New Code:

- (void)createAdBannerView
{
    _adBannerView = [[ADBannerView alloc] initWithFrame:CGRectZero];
    _adBannerView.delegate = self;
   [_adBannerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth];

    CGRect frame = _adBannerView.frame;
    frame.origin.y = -frame.size.height;
    frame.origin.x = 0.0f;

    _adBannerView.frame = frame;

    AppDelegate * app = (((AppDelegate*) [UIApplication sharedApplication].delegate));
    [app.navController.view addSubview:_adBannerView];
}

Here new iAd Code for Cocos2d 3.0.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!