Amit Kalra
Amit Kalra

Reputation: 4113

Am I displaying iAd correctly?

I have the following code in the viewDidLoad()section of my app.

func loadAds() {

theAdBanner.delegate = self
theAdBanner.hidden = false
theAdBanner.canDisplayAds = true
view.addSubview(theAdBanner)

}

I am only getting one ad that is in blue and it says "You're Connected To iAd". I want to make sure I'm doing this correctly. Why am I only getting one ad? Shouldn't there be more ads loading up, like the ones I see in other apps?

Upvotes: 1

Views: 66

Answers (1)

Eduardo Iglesias
Eduardo Iglesias

Reputation: 1066

After implementing iAD if it says "You're Connected To iAd". It means that you implement it correctly, when the app is in the App Store it will appear real Ads.

Just make sure you have all the tax and ads agreements signed.

Upvotes: 1

Related Questions