English 中文(简体)
id 太多活跃的横幅(10)。 创建新的横幅将受到抽打。
原标题:iAd Too many active banners (10). Creation of new banners will be throttled

我在ViewWillAppear和ViewViewView上创建并删除了ADBannerView, 尽管在转换为另一种没有建立ADBannerView的观点后, 我仍然看到许多警告。 这意味着什么? 我如何修正它?

问题回答

我成功地创建和创建了与 IB 的 adView, 或者看到Load 而不是看 WillAppear 。 以下是从我的一个应用程序中使用的代码中推导出的一个示例。 我希望它有所帮助 。

- (void)viewDidLoad
{
    [super viewDidLoad];
    adView = [[AdBannerView alloc]initWithFrame:GCResctMake(0,0,320,50)];
    adView.requiredContentSizeIdentifiers = [NSSet setWithObject:ADBannerContentSizeIdentifier320x50];
    adView.currentContentSizeIdentifier = ADBannerContentSizeIdentifier320x50;
    adView.delegate=self;
    bannerIsVisible=NO;
    adView.hidden = YES;
    [adContainerView addSubview:adView];
    [adView release];
}

您真的应该在应用程序中创建一个 AdBannerView 对象, 并在您的其他视图中按需要添加/ 重新使用它。 您还需要在有或没有iAd 可用时处理显示/ 隐藏它, 并调整内容视图的大小, 以便给子视图显示空间 。 请查看苹果 < a href=> 中的 TabbbedBanner 工程 。 http:// developer. apple. com/library/ ius/ samplecode/ iAdSacti/ Intro. html" rel= “ nofollow” iAdSit 样本, 样本中包含此功能的精密内容 。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签