Questions tagged [adbannerview]

The ADBannerView class provides a view that displays banner advertisements to the user. When the user taps on a banner view, the view triggers an action programmed into the advertisement. For example, an advertisement might show a movie, present an additional modal advertisement, or launch Safari to show a web page. Other actions are possible.

224 questions
5
votes
3 answers

Swift - ADBannerView

I tried to implement ADBannerView with the old way like Objective C but unsuccessfull. Everythings work but the advertisments didn't show up, it stays a blank field. func bannerViewDidLoadAd(banner: ADBannerView!) { UIView.beginAnimations(nil,…
Bogdan Bogdanov
  • 882
  • 11
  • 36
  • 79
5
votes
1 answer

Do I need to implement didFailToReceiveAdWithError in iOS7+ app?

I'm implementing a new app for iOS7+. The integration with iAd banners seems easy with canDisplayBannerAds in the views i want to display a banner. However i'm getting this errors in Xcode log: ADBannerView: Unhandled error (no delegate or delegate…
jorgeram
  • 141
  • 5
5
votes
2 answers

Changing canDisplayBannerAds to NO does not update the view to remove ad banner

Weird question, and I've been bannging my head against this wall for hours and haven't been able to solve it. I have a iOS 7 only app that uses storyboards. On my main root view controller, I display an iAd banner at the bottom of the view using…
4
votes
2 answers

How to put an Ad BannerView to keep in all the views from a TabBar app?

I'm making a Tab Bar application. It has 3 ViewControllers. I learned how to put a working AdBannerView (because I'm kind of a newbie in this), so I put it on the FirstViewController. But then I realized that I want the ad to be present in all the 3…
avatarbobo
  • 269
  • 2
  • 6
  • 14
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
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
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
0 answers

keep adbanner at bottom on all orientation in iOS?

Iam trying to place one adbanner(admob banner) on bottom of my app.But currently by using my code it appearing sometimes at bottom or middle like that.Please check following screenshots please check my code #import "LocViewController.h" @interface…
Bangalore
  • 1,572
  • 4
  • 20
  • 50
4
votes
2 answers

using shared instance of ADBannerView across app with UITableViews

I have an app with multiple UITableViews and am in the process of implementing iADs. Per the Apple documentation (http://developer.apple.com/library/ios/#technotes/tn2286/_index.html#//apple_ref/doc/uid/DTS40011212) I have created a shared banner…
g_low
  • 2,435
  • 19
  • 23
3
votes
1 answer

iAd BannerViewDelegate - warnings are printed on console

Wirh SDK 4.2 and iOS5, it has created some confusion for me. In my new tabbar-based app, I have multiple view controllers. I have carefully checked and re-checked that all iAd delgate methods are present. In fact, I took help of iAdSuite example…
Sam
  • 827
  • 4
  • 9
  • 21
3
votes
2 answers

Can you preload admob DFPBannerView on iOS

Can you preload admob DFPRequest on iOS? I know you can for interstitials, but was wondering about DFPBannerView
Tim Walsh
  • 1,089
  • 11
  • 27
3
votes
1 answer

iAd (ADBannerView) work, but have strange system output in Swift

Tried to include advertising in the test application. Banner normally displayed, but the transition from the controller, in which there is advertising on the other controller, in the system output is displayed strange information: [AppDeveloper]…
Alexey Nakhimov
  • 2,673
  • 8
  • 34
  • 49
3
votes
1 answer

OpenX: Deactivated Banners to shown in Zone

I have created one Compaign (Ad1_Compaign), and i have put two banners to that Compaign (Ad1_Compaign). And I have linked these 2 banners(Banner1 and Banner2) to one Zone under one Website. After that, I am running the Invocation Code for that Zone,…
kpmDev
  • 1,330
  • 1
  • 10
  • 28
3
votes
3 answers

Add clickable and fixed subview to UITableViewController?

I'd like to place an ADBannerView object onto my UITableView screen statically, what means that I want it to always stay above my toolbar (self.navigationController.toolbar), even when the user is scrolling the tableview. I've solved this by adding…
CGee
  • 1,650
  • 5
  • 20
  • 31
2
votes
2 answers

is it a good practice to delete the AdBannerView on viewWillDisappear and add it back on viewWillAppear?

I am currently doing the following in my code avoid the issue of "obscured" ad. But is it a good practice? One potential problem is that - assume before the viewWillDisappear, there was an ad request send out, and then when the ad come back the…
tom
  • 14,273
  • 19
  • 65
  • 124
1
2
3
14 15