Are interstitial ads discouraging? iOS 8?

I created a dummy sprite app. Then I added the most rudimentary iAd cross-page support.

IN AppDelegate.m/didFinishLaunchingWithOptions

[UIViewController prepareInterstitialAds];

      

IN ViewController.m/ViewDidLoad

self.interstitialPresentationPolicy = ADInterstitialPresentationPolicyManual;

      

Then, after the scene was presented, I added a continuous loop to trigger the declarations.

[scene runAction:[SKAction repeatActionForever:
    [SKAction sequence:@[[SKAction waitForDuration:3.0],
    [SKAction runBlock:^
        {
            if( !self.isPresentingFullScreenAd )
                [super requestInterstitialAdPresentation];
        }
    ]]]]
];

      

What's wrong isn't working?

+3


source to share


1 answer


Are you running an iPhone 4s? If so, try switching to 5/6 in simulator or real life and it works!

Easy to replicate.

I have filed a bug with Apple.

Another issue I've faced in the past, especially for new iTunesConnect accounts, is that you need to complete all outstanding banking and iAd contracts in iTunes Connect even for the free app.



In addition, sometimes ads are not served on the simulator (try restarting the app).

Plus, if you look at the settings in the simulator, you can change the ad fill rate and deliver endless ads (and more).

All can be contributing factors.

+1


source







All Articles