- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在使用 Swift 在我的应用中植入插页式广告。我已经设法让它显示插页式广告,但没有关闭的“X”按钮来摆脱广告。这是为什么?
最佳答案
我也找不到为什么内置框架不提供关闭按钮的答案,但我最终使用了以下解决方案。
//iAD interstitial definition with custom placeHolderView and close button
//you do not need to add anything to interface builder. All is done with code
var interstitial:ADInterstitialAd!
var placeHolderView:UIView!
var closeButton:UIButton!
//Full Implemantation of iAD interstitial and delegate methods
func cycleInterstitial(){
// create a new interstitial. We set the delegate so that we can be notified
interstitial = ADInterstitialAd()
interstitial.delegate = self;
}
func presentInterlude(){
// If the interstitial managed to load, then we'll present it now.
if (interstitial.loaded) {
placeHolderView = UIView(frame: self.view.frame)
self.view.addSubview(placeHolderView)
closeButton = UIButton(frame: CGRect(x: 270, y: 25, width: 25, height: 25))
//add a cross shaped graphics into your project to use as close button
closeButton.setBackgroundImage(UIImage(named: "cross"), forState: UIControlState.Normal)
closeButton.addTarget(self, action: Selector("close"), forControlEvents: UIControlEvents.TouchDown)
self.view.addSubview(closeButton)
interstitial.presentInView(placeHolderView)
}
}
// iAd Delegate Mehtods
// When this method is invoked, the application should remove the view from the screen and tear it down.
// The content will be unloaded shortly after this method is called and no new content will be loaded in that view.
// This may occur either when the user dismisses the interstitial view via the dismiss button or
// if the content in the view has expired.
func interstitialAdDidUnload(interstitialAd: ADInterstitialAd!){
placeHolderView.removeFromSuperview()
closeButton.removeFromSuperview()
interstitial = nil
cycleInterstitial()
}
func interstitialAdActionDidFinish(_interstitialAd: ADInterstitialAd!){
placeHolderView.removeFromSuperview()
closeButton.removeFromSuperview()
interstitial = nil
println("called just before dismissing - action finished")
}
// This method will be invoked when an error has occurred attempting to get advertisement content.
// The ADError enum lists the possible error codes.
func interstitialAd(interstitialAd: ADInterstitialAd!,
didFailWithError error: NSError!){
cycleInterstitial()
}
//Load iAd interstitial
func dislayiAdInterstitial() {
//iAd interstitial
presentInterlude()
}
func close() {
placeHolderView.removeFromSuperview()
closeButton.removeFromSuperview()
interstitial = nil
}
关于ios - Interstitial iAd没有关闭 'X'按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25896279/
我制作了一个加载苹果测试广告的测试应用程序。我想知道如何加载实时广告而不是苹果测试广告。加载实时 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 方法是否存在。
我是一名优秀的程序员,十分优秀!