How do you implement interstitial iads into a sprite kit game in swift?

608 Views Asked by At

I have looked around the internet but i can't find out how to implement interstitial iAds into my sprite kit game

1

There are 1 best solutions below

3
Sebastian Flückiger On BEST ANSWER

the following code in your viewcontroller will do it. nothing more to it. you can invoke it with an NsNotofication or delegate from within your scene.

func fullScreenAd() {
    if self.requestInterstitialAdPresentation() {
        println("ad loaded")
    }
}