Questions tagged [iad]

iAd is a mobile advertising platform developed by Apple Inc. for its iPhone, iPod Touch, and iPad line of mobile devices allowing third-party developers to directly embed advertisements into their applications.

Notice: The iAd App Network was discontinued on June 30th, 2016 and is no longer accepting new applications into the network.

Refer to About the iAd App Network Shutdown for more information on the expected behavior now that the iAd Network has been discontinued.


iAd is a mobile advertising platform developed by Apple Inc. for its line of mobile devices running iOS, allowing third-party developers to directly embed advertisements into their applications.

More information can be found on the official iAd page and the iAd Developer's page.

1571 questions
4
votes
1 answer

iAd ADBannerView appears tinted on Device

I'm getting a tinted adBannerView on the device, instead the normal adBannerView as it appears in the Simulator. Any ideas on this?
whatever0010011
  • 455
  • 4
  • 11
4
votes
1 answer

Test iAd attribution for iOS app

Is there a way to test this iAd attribution code snippet? It basically helps me understand my users that came from my iAd campaigns but I don't want to deploy my app without testing that it works…
locoboy
  • 38,002
  • 70
  • 184
  • 260
4
votes
0 answers

iAds showing an error of Ad was unloaded from this banner when switching between tabs on a UITabBarController

I am implementing iAds into my app for the first time and the app itself is a simple 5-tabbed UITabBarController where the first 4 tabs are a UIViewController with a UITableView embedded in and the last tab is a UITableViewController. With…
amitsbajaj
  • 1,304
  • 1
  • 24
  • 59
4
votes
1 answer

How to share iAd banner between views using AppDelegate

I am looking to implement iAd in my app. So far I have managed to get them showing/dismissing correctly in each view using the below. App Delegate: import UIKit import iAd @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { …
Stuart Pattison
  • 173
  • 2
  • 12
4
votes
1 answer

Implementing In-App Purchase to Disable Ads

Below is the code I'm using to creating ads in my app. I am programming in SpriteKit with Swift, and I am trying to implement an in-app purchase such that iAds are disabled when one pays 99¢. How would I go about this? Here is my code for producing…
tdh
  • 884
  • 1
  • 11
  • 22
4
votes
0 answers

Disable iAd for a live app remotely

I need to disable iAd in my app that is already live on the App Store. I know that I can just release an update that doesn't have ads, but I'm hoping to avoid the review delay. Is there any way to disable the app receiving ads in the iAd…
Linuxios
  • 34,849
  • 13
  • 91
  • 116
4
votes
1 answer

iOS: full page interstitial ad shows black screen after close

I show a full screen advertisement with this code, which works showing a full page advertisement. The problem is that when I close the advertisement I just have a blank screen. It does not show my app anymore. My code: -(void)showFullScreenAd { …
MSU_Bulldog
  • 3,501
  • 5
  • 37
  • 73
4
votes
4 answers

How to implement Interstitial iAds in Swift(Xcode 6.1)

I am trying to figure out how to switch over from my banner view iAds to interstitial iAds in order to free up space for a tabbed controller. For some reason I am completely unable to find any resource for even getting started on these ads with…
4
votes
1 answer

app rejected due to iOS Advertising Identifier

My app was rejected due to iOS Advertising Identifier, I'm not using iAd. I'm using google ads , google analytics, google+ login, and Facebook login in my app. reason for rejecting is 3.2: Apps with placeholder text will be rejected Program License…
Rajesh
  • 359
  • 3
  • 14
4
votes
2 answers

iAd interstitial delegate methods doesn't get called

I want to use interstitial ads in my app, so I implemented all necessary delegate methods. The problem is, if I use [self requestInterstitialAdPresentation] to show the ad, only the interstitialAdDidLoad: method gets called. The…
appcodix
  • 342
  • 2
  • 15
4
votes
2 answers

requestInterstitialAdPresentation Works only one Time

I am wondering why [self requestInterstitialAdPresentation]; works only one time. I mean that I binded this call into UIButton, First time I run my app, and click this button the ad appear correctly but, when I close ad and trying to call again…
user3370412
4
votes
3 answers

Calling interstitial iAd works only one time

I have spritekit game, Ad is preloaded on each start of game with [UIViewController prepareInterstitialAds]; And after gameover it should display ad with [self.view.window.rootViewController requestInterstitialAdPresentation]; and it's works okay,…
user3370412
4
votes
2 answers

iOS Interstitial iAd does not close

my iAd-integration does not work correctly. I tried to implement fullscreen ads. The ad appears but when I press the "X"-button to close, it does not close. Maybe you can find an Issue in my code? I don't know what to change and have invested a lot…
user3430458
  • 41
  • 1
  • 4
4
votes
2 answers

iAd no requests? Test ads displayed fine previously.

I have had my app on the app store for 2 days now and it hasn't made one request for an ad. During testing it displays test ads perfectly fine so they were working/code is correct. Also in the iAd network it shows 'This app is receiving live ads'. I…
Kevin Tarr
  • 387
  • 3
  • 9
4
votes
1 answer

Displaying banner ads with SpriteKit

I'm new to SpriteKit and just published my first game. Now I would like to add banner ads to the game. However, I'm completely lost. Most tutorials tell you to simply call self.canDisplayBannerAds = YES; in the viewDidLoad method. I'm doing that,…
knurb
  • 475
  • 1
  • 4
  • 14