Reputation: 4113
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
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