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
6
votes
1 answer

iAd banner gone after dismissModalViewControllerAnimated

In my app delegate, I instantiate an iAd banner and assign it to a delegate property, then I load the main View Controller. In the main View Controller, I add the iAd banner as a subview, and also instantiate a "Main Menu" view controller and add…
Jay Imerman
  • 4,475
  • 6
  • 40
  • 55
6
votes
1 answer

How to use iAds in landscape in iOS6

Im using iOS6 SDK and currently apple deprecated landscape mode. Is there any work around to use landscape iAds because my game only runs on landscape mode. Thank you.
Gamer
  • 369
  • 3
  • 11
6
votes
2 answers

Shared iAd banner for UITabBarController based app using XCode 4 with storyboard

Storyboard iAd Tab Bar Controller sample project 1: Download sample project for Xcode 4.2 2: Make the banner visible above the Tab Bar from every view 3: post answer 4: recieve bounty 5: make other people happy, I will tutorialize it. No place…
6
votes
3 answers

How to create a global reference for iAd and implement in multiple Viewcontrollers

I'm having 5 ViewControllers in each of that i have to display iAd,so that i have to implement iAd code in each ViewControllers. Instead of that if i create set of common code in AppDelegate means i can just call that code wherever i need iAd to be…
Sudharson
  • 57
  • 1
  • 3
5
votes
1 answer

Ad mobs or iAd?

Hi i'm developing app using native SDKs on android / ios building free app and want to include ads and want to use same revenue stream from either one of the provider so i'm not chasing seperately for payments etc... i know ad mobs has ios / android…
codejunkie
  • 1,122
  • 3
  • 13
  • 29
5
votes
3 answers

Is there any audio ads for iPhone audio apps?

my app is like podcast for web articles. https://apps.apple.com/app/id1273954643 I plan to make a free version and am curious if there is audio ads for iPhone apps. Since most users of my app don't see the screen, banner ads doesn't fit well. I…
Umeumeume
  • 1,952
  • 3
  • 21
  • 40
5
votes
4 answers

How do I make my iAd banner appear at bottom of screen?

I have the following code that allows me to position it on the top. I am wanting it to appear at the bottom. adView = [[ADBannerView alloc] initWithFrame:CGRectZero]; adView.frame = CGRectOffset(adView.frame, 0, -50); …
Strong Like Bull
  • 11,155
  • 36
  • 98
  • 169
5
votes
1 answer

iAd not showing on Device after releasing application on App Store

Checked couple of questions regarding not showing iAd after releasing application on App Store. Make all necessary settings for iAd, The test ads are showing fine in simulator and Device, then release application and enable iAd Network for that…
Hiren Gujarati
  • 1,039
  • 14
  • 32
5
votes
2 answers

Detect if app is running on iOS beta?

I have some iAd/AdMob supported apps on the iOS app store. I notice every time a iOS beta comes out, ad requests plummet. I'm assuming this is due to many people running the beta OS, and therefor almost always get a iAd test ad. Is there some way my…
jamone
  • 17,253
  • 17
  • 63
  • 98
5
votes
4 answers

iad banner - one instance per app or one instance per page

Is it more appropriate to have one shared instance of and iAd for my app or can I create a new instance on each page of a navigation app? It seems Apple's sample code has only one ad that is used one each page. From my perspective more ads means…
Joe Fratianni
  • 790
  • 8
  • 24
5
votes
3 answers

iAd on iPad: Landscape iAd not Oriented Correctly

This is still a relatively new topic so not sure how many people have got to implement iAd on iPad (iOS4.2.1). But basically, I get the iAd banner to appear in landscape mode (and it appears correctly). The only problem is when I click the "Test…
Shai UI
  • 50,568
  • 73
  • 204
  • 309
5
votes
2 answers

iAd banner content Size .. (iAd Support with iOs 4.2 for iPad)

We have an application that support iAds. Apparently iOs 4.2 for iPad will support this, but doing some tests with the beta SDK, there is no way to resize de banner to make it fit on the DetailView of a SplitViewController. in Iphone you set the…
Omer
  • 5,470
  • 8
  • 39
  • 64
5
votes
2 answers

iAd custom transition for interstitial ads

I would like to treat ADInterstitialAds as a regular UIView's to gain some flexibility in their usage. For example, the default interstitial transition is slide up from the bottom of the screen. I don't like that. Is it possible to modify the alpha…
potato
  • 4,479
  • 7
  • 42
  • 99
5
votes
2 answers

iOS 9 - Ad inventory unavailable

After updating to Xcode 7 and building my app in iOS9, iAds stopped working and I get this error in bannerView didFailToReceiveAdWithError: Ad inventory unavailable. Any ideas? EDIT: iAds are now working. Apple must have fixed it after we filed…
Mark
  • 2,666
  • 3
  • 25
  • 29
5
votes
1 answer

Hiding iAd ADBannerView in Swift when ad fails to load - no delegate or delegate does not implement didFailToReceiveAdWithError

This is the code I am using: var bannerView = ADBannerView() self.canDisplayBannerAds = true //show ad banner if an ad loads func bannerViewDidLoadAd(banner: ADBannerView!) {bannerView.hidden = false} //hide ad banner if the ad fails to load func…
dwinnbrown
  • 3,789
  • 9
  • 35
  • 60