我想了解如何在展示我的GameOverScene时设置Admob非页内广告。我有什么办法只在游戏结束时才展示广告?我如何在Swift中实现它?
我指的是这篇文章How to call admob interstitial ad using swift, spritekit and xcode?,但我想知道如何在场景之间调用广告。
修改 以下是我用来展示广告的代码
class GameViewController: UIViewController, GADInterstitialDelegate {
var interstitial = GADInterstitial()
var intersitialRecievedAd = false
let defaults = NSUserDefaults.standardUserDefaults()
override func viewDidLoad() {
super.viewDidLoad()
interstitial.delegate = self
self.interstitial = createAndLoadAd()
let timer = NSTimer.scheduledTimerWithTimeInterval(0.5, target: self, selector: "checkIfAdIsToBeDisplayed:", userInfo: nil, repeats: true)
//Scene implementation, boring stuff, got nothing to do with the ads...
...
}
func checkIfAdIsToBeDisplayed(timer:NSTimer) {
if defaults.boolForKey("adToBeShown") == true && intersitialRecievedAd == true {
showInterstitial()
defaults.setBool(false, forKey: "adToBeShown")
intersitialRecievedAd = false
} else {
}
}
func interstitialDidReceiveAd(ad: GADInterstitial!) {
intersitialRecievedAd = true
}
func createAndLoadAd() -> GADInterstitial {
var ad = GADInterstitial(adUnitID: "...")
ad.delegate = self
let request = GADRequest()
request.testDevices = ["..."]
ad.loadRequest(request)
return ad
}
func showInterstitial(){
if self.interstitial.isReady {
self.interstitial.presentFromRootViewController(self)
self.interstitial = createAndLoadAd()
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Release any cached data, images, etc that aren't in use.
}
override func prefersStatusBarHidden() -> Bool {
return true
}
}
此代码使用计时器不断检查是否已呈现gameOverScene。当gameOverScene出现时,我将true
分配给"adToBeShown"
布尔。
这不是最好的方法,所以有人能告诉我如何在呈现场景时直接调用广告吗?
答案 0 :(得分:5)
为什么不使用NSNotificationCenter或委托来调用showInterstitial()。
例如
在gameViewController中,在viewDidLoad中添加它
NSNotificationCenter.defaultCenter().addObserver(self, selector: "showInterstitial"), name:"showInterAdKey", object: nil);
当您想要从场景中显示广告时,请使用
NSNotificationCenter.defaultCenter().postNotificationName("showInterAdKey", object: nil)
您还可以使用我在github上发布的帮助程序,这样可以使这更容易,并且您的ViewController保持干净https://github.com/crashoverride777/Swift-2-iAds-and-AdMob-Helper
答案 1 :(得分:0)
您还可以限制admob通过admob网站显示插页式广告的频率。在插页式广告的设置中,可以选择更改弹出广告的频率。