gpt4 book ai didi

iphone - 如何在 UIAlertview 中添加 iAd?

转载 作者:行者123 更新时间:2023-11-28 23:00:14 24 4
gpt4 key购买 nike

我使用 iAd 框架在屏幕上添加广告。我通过下面的代码完成了这个。但我想要 UIAertview 中的广告。当 UIAlertview 出现时,用户应该在其中查看公司广告。

-(void)bannerViewDidLoadAd:(ADBannerView *)banner
{
if (!self.bannerIsVisible) {
[UIView beginAnimations:@"animatesAdBannerOn" context:NULL];
banner.frame = CGRectOffset(banner.frame, 0, -banner.frame.size.height); [UIView commitAnimations];
self.bannerIsVisible = YES;
}
}


- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error
{
if (!self.bannerIsVisible)
{
[UIView beginAnimations:@"animatesAdBannerOff" context:NULL];
banner.frame = CGRectOffset(banner.frame, 0, banner.frame.size.height); //rect, dx,dy
[UIView commitAnimations];
self.bannerIsVisible = NO;
}
}

我知道我们可以自定义 UIAlertview。但不知道如何在其中添加 iAd View 。有知道的帮帮我吧。

最佳答案

如果我没听错的话,您想为自己的公司制作广告吗?您不会为此使用 iAd,因为使用 iAd 您几乎无法控制将哪个广告推送到您的横幅。但是,您可以创建一个包含任何内容的新 View (明智的广告)并将其添加为 UIAlertView 的 subview 。现在我是说您可以这样做,但您可能不应该这样做。以这种方式修改 alertView 很可能会被 Apple 拒绝。

关于iphone - 如何在 UIAlertview 中添加 iAd?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10141933/

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