gpt4 book ai didi

ios - 前几天 iAd 没有显示

转载 作者:行者123 更新时间:2023-12-01 16:47:41 25 4
gpt4 key购买 nike

iAd 错误 :

    Error Domain=ADErrorDomain Code=3 "The operation couldn’t be completed. Ad inventory unavailable" 
UserInfo=0x118bb420 {ADInternalErrorCode=3, ADInternalErrorDomain=ADErrorDomain, NSLocalizedFailureReason=Ad inventory unavailable}

你能告诉我是我的编码问题还是苹果网站的问题?

我在 App Delegate 中分配 iAd 对象,并且代表也在 App Delegate 中。这是代码: -
AppDelegate *appDel=(AppDelegate*)[UIApplication sharedApplication].delegate;
CGRect rect1 = CGRectMake( 0.0,300,320,50);
appDel.adBanner = [[ADBannerView alloc] initWithFrame:rect1];
appDel.adBanner.requiredContentSizeIdentifiers = [NSSet setWithObject:ADBannerContentSizeIdentifierPortrait];
appDel.adBanner.currentContentSizeIdentifier = ADBannerContentSizeIdentifierPortrait;
[appDel.adBanner setHidden:YES];
appDel.adBanner.delegate = self;

- (void)bannerViewDidLoadAd:(ADBannerView *)banner
{
AppDelegate *app=(AppDelegate*)[UIApplication sharedApplication].delegate;
NSLog(@"iAd load");
app.adBanner.frame=CGRectMake( 0.0,300,320,50);
app.adBanner.hidden=NO;
}

- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error
{
AppDelegate *app=(AppDelegate*)[UIApplication sharedApplication].delegate;
NSLog(@"iAd error: %@", error);
app.adBanner.hidden=YES;
app.adBanner.frame=CGRectMake( 0.0,350,0,0);
}

然后我在摘要中添加横幅 UIViewConroller类(class)
CGFloat y=0;
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
CGSize result = [[UIScreen mainScreen] bounds].size;
y=result.height;
}
AppDelegate *app=(AppDelegate*)[UIApplication sharedApplication].delegate;
CGRect rect2 = CGRectMake( 0.0,y-50,320,50);
app.adBanner.frame =rect2;
UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;
[topController.view addSubview:app.adBanner];

在此先感谢您的帮助。

最佳答案

你是在模拟器上测试吗?当您在 iOS 模拟器中测试 iAd 时,问题可能出在域中。尝试在设备上进行测试,如果问题仍然存在,请添加一些有问题的代码以帮助我们了解实际问题出在哪里

关于ios - 前几天 iAd 没有显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18589697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com