- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我第一次集成 iAds 的经验。我使用了以下链接
http://codewithchris.com/iad-tutorial/
我完美地实现了它。我的应用程序显示 AddBannerView 完美,但广告隐藏并显示不工作。我通过使用 Storyboard 添加了 adBannerView 并连接了它的代表和 IBOutlets。
-(void)bannerViewDidLoadAd:(ADBannerView *)banner {
if (! bannerIsVisible) {
// If banner isn't part of view hierarchy, add it
if (advertiseView.superview == nil) {
[self.view addSubview:advertiseView];
}
[UIView beginAnimations:@"animateAdBannerOn" context:NULL];
// Assumes the banner view is just off the bottom of the screen.
banner.frame = CGRectOffset(banner.frame, 0, -banner.frame.size.height);
[UIView commitAnimations];
bannerIsVisible = YES;
}
}
-(void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error {
NSLog(@"Failed to retrieve ad");
if (bannerIsVisible) {
[UIView beginAnimations:@"animateAdBannerOff" context:NULL];
// Assumes the banner view is placed at the bottom of the screen.
banner.frame = CGRectOffset(banner.frame, 0, banner.frame.size.height);
[UIView commitAnimations];
bannerIsVisible = NO;
}
}
最佳答案
您遵循的教程已过时。你的原因ADBannerView
在一段时间内出现在您的视野中间是因为您的 CGRectOffset
在您的 ADBannerView
的委托(delegate)方法。我猜你的 bannerIsVisible
有问题BOOL
.
另外,不要使用 beginAnimations:context:
方法。来自 UIView Class Reference :
Use of this method is discouraged in iOS 4.0 and later. You should use the block-based animation methods to specify your animations instead.
ADBannerView
的示例。以编程方式。此示例为
alpha
设置动画。
ADBannerView
的属性(property)显示或隐藏它。无需设置
ADBannerView
的框架。它会知道它在哪个设备上并适本地调整自己的大小。只需设置它的位置就足够了。
#import "ViewController.h"
@import iAd; // Import iAd
@interface ViewController () <ADBannerViewDelegate> { // Include delegate
ADBannerView *adView; // Create globally
}
@end
@implementation ViewController
-(void)viewDidLoad {
[super viewDidLoad];
adView = [[ADBannerView alloc]init]; // Alloc/init
// Position
adView.center = CGPointMake(self.view.frame.size.width / 2,
self.view.frame.size.height - adView.frame.size.height / 2);
adView.delegate = self; // Set delegate
adView.alpha = 0.0; // Hide banner initially
[self.view addSubview:adView]; // Add to view
}
-(void)bannerViewDidLoadAd:(ADBannerView *)banner {
// Delegate method called when the ADBannerView receives an ad
NSLog(@"bannerViewDidLoadAd");
// Animate alpha change to show ADBannerView
[UIView animateWithDuration:1.0 animations:^{
adView.alpha = 1.0;
}];
}
-(void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error {
// Delegate method called when the ADBannerView fails
// Can fail for multiple reasons so lets print why its failing in our NSLog
NSLog(@"didFailToReceiveAdWithError: %@", error);
// Animate alpha change to hide ADBannerView
[UIView animateWithDuration:1.0 animations:^{
adView.alpha = 0.0;
}];
}
关于ios - 如何以编程方式在 iOS 的 iAds 横幅上显示广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34790471/
我制作了一个加载苹果测试广告的测试应用程序。我想知道如何加载实时广告而不是苹果测试广告。加载实时 iAd 的机制是什么?任何人都可以在这方面帮助我吗? 问候阿卜杜勒·萨马德 最佳答案 作为docume
我刚刚将 iAd 添加到我的一个应用程序中,它工作正常,只是它在横幅 View 的顶部和底部留下了空白。有谁知道如何摆脱它? 截图如下: 最佳答案 你在使用 Storyboard吗?如果可能的话,您已
You are receiving this email because you entered into the Developer Advertising Services Agreement (
我想知道使用过 iAds 的人是否知道没有广告返回的频率 当我们收到“无广告”委托(delegate)回调时,我们正在讨论是否使用替代广告平台 - (void)bannerView:(ADBanner
我在 iAd 不支持的中国,但我想嵌入 iAd,因为我的应用程序是全局性的。我知道只有美国、英国、日本......可以展示 iAd。 如果我在中国,如何向 iAd 发送短信? 或者,如果我是位于中国的
我已经创建了一个 iOS6“单一 View ”iPhone 应用程序。 应用程序只有纵向。 我在应用程序中添加了 iAds。 我像这样向应用程序添加额外的 View : if (se
You are receiving this email because you entered into the Developer Advertising Services Agreement (
我开发了这款游戏,它运行良好,就像我想要的那样,但在我添加 iAd 横幅后,当我开始游戏时,它会正常运行大约 10 秒。然后它放大并使所有东西都变得非常大,然后它会给我这个错误: Shapes#2[7
我是第一次使用 iAd,我已成功将应用程序与 iAd 集成。现在它完成了它工作正常显示演示 iAd 横幅。如何使用 iAd 网络显示广告,我找不到任何连接 iAd 应用程序的教程。是否需要创建任何 I
如果 iAds 横幅不改变场景,我无法将 iAds 实现到游戏中,例如每次加载广告时都会抖动屏幕。请提供解决方案以阻止这种情况发生。 class GameViewController: UIViewC
我已经以这种方式构建了我的应用程序,一切似乎或多或少都正常工作。在听说 iAd 填充率极低之后,我认为这将是最好的方法,但我尝试用谷歌搜索它,但找不到其他人在他们的应用程序中像这样实现广告的记录。这是
我正在尝试在 iOS 设备上测试 iAd,2013 年的一些帖子说您需要在 iTunes Connect 中“设置 iAd 网络”。我在 Itunes connect 中看不到任何此类选项。 itun
我已经复制了 iAdSuite with Storyboards在 swift 中,iAd 在所有 View Controller 上工作正常,除了当委托(delegate)方法 bannerView
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
这仍然是一个相对较新的话题,所以不确定有多少人在 iPad (iOS4.2.1) 上实现了 iAd。 但基本上,我让 iAd 横幅以横向模式显示(并且显示正确)。唯一的问题是当我点击“测试广告”时,它
我搜索了一段时间,同时寻找有关如何在 iAds 失败时将 iAds 与 AdMobs 集成的完整指南, 我问这个问题的唯一原因是我有 iAds,我注意到 iAds 的填充率非常低,并且希望 AdMob
我们有一个支持 iAds 的应用程序。显然 iPad 版 iOs 4.2 将支持这一点,但是使用 beta SDK 进行一些测试,无法调整横幅大小以使其适合 SplitViewController 的
我在全新的项目中实现了一个非常简单的 iAd 横幅,当我运行它时,我收到错误 ERROR:无法从数据库获取接收器数据! 代码非常基本,所以我认为问题与代码无关,但我会添加它以防万一: #import
我最近更新了我的开发者成员(member)资格。我的新契约(Contract)于 5 月 19 日生效。上周我进去浏览了我的 iAd 收入,发现我所有的 iAd 应用程序都是“红色”并且没有收到广告。
Wirh SDK 4.2 和 iOS5,这让我有些困惑。在我新的基于标签栏的应用程序中,我有多个 View Controller 。我已经仔细检查并重新检查所有 iAd delgate 方法是否存在。
我是一名优秀的程序员,十分优秀!