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
0
votes
0 answers

iOS: Creating admob banner and interstitial ad

I need to have banner and interstitial within the app. Banner should be always visible in the bottom of every screen screen, even during transitions. Interstitial should be presented then app becomes active above full app screen. To implement that…
dsfs
  • 189
  • 1
  • 3
  • 10
0
votes
2 answers

Can I display admob Native ads along with admob Banner ad in same activity?

I had made an app with tab layout. Can I insert an Admob Banner ad in bottom and AdMob or facebook native ad in all other fragments? Is this against any AdMob policy. Thanks for Answer in advanced.
Kanishq Gupta
  • 151
  • 1
  • 4
  • 12
0
votes
0 answers

The admob banner is not displayed, only displayed in white

Hello everyone I am working with an admob banner, as I was reading me and I followed those tutorials, try 2 ways 1.- I put the adomob of normal formal following the parameters in the layout in the manifest etc 2.- and the other way is putting the id…
0
votes
1 answer

Using AdUnit correctly in an Android app

I have an Android app, with around 25 activities. According to AdMob Guidelines, we should only have one AdUnit for one activity, right? So, how many AdUnits, we can add in an Android app for Banner and Interstitial Ads? Is their any limit for…
Aman Chawla
  • 304
  • 3
  • 8
  • 23
0
votes
2 answers

Adding a banner ad unit id with Admob

In the admob documentation, it's written that: An ad unit ID is a unique identifier given to the places in your app where ads are displayed. Create an ad unit for each activity your app will perform. If you have an app with two activities, for…
Maor Cohen
  • 936
  • 2
  • 18
  • 33
0
votes
1 answer

Ad Banner inside a TableView

I have a table view controller with cells in it. I wanted to put a view for an ad banner in the bottom of the tableview (like a footer but always in the bottom). For example if I have 1 cell, the cell would be on the top of the screen and the banner…
H.N.
  • 1,207
  • 2
  • 12
  • 28
0
votes
1 answer

ADBannerViewDelegate didFailToReceiveAdWithError continuously calling

I am facing this issue since iOS 9 release. - (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error Following error occurs- Error Domain=ADErrorDomain Code=8 "Frame load interrupted" UserInfo={ADInternalErrorCode=8,…
asheesh Verma
  • 404
  • 6
  • 17
0
votes
1 answer

iOS - ADBannerView not showing ads on app

I am trying to show ads on app. But it is not working (on Simulator + devices). error deatils : Error: Unable to show ads. Error: The operation couldn’t be completed. Ad was unloaded from this banner -(void)viewDidLoad { [super…
Ravi
  • 800
  • 2
  • 12
  • 28
0
votes
1 answer

libGDX Appodeal Banner Ad Display

I'm currently displaying a banner-ad in my applications PlayScreen with the Appodeal SDK. The onCreate() method looks like this @Override protected void onCreate (Bundle savedInstanceState) { ... View gameView =…
mtosch
  • 351
  • 4
  • 18
0
votes
0 answers

ADBannerView shows up as white

I am trying to implement a shared ADBannerView, which is kept in the App Delegate. Is there any specific reason why the first time the banner loads in a View Controller it shows up as white? Then in the following loads for that View Controller, the…
Daniele B
  • 19,801
  • 29
  • 115
  • 173
0
votes
2 answers

AdBannerView unhandled error -- Error with iAds. The add comes up fine in the simulator, but give a strange warning?

Here's the error/ warning I get: 2016-01-20 13:21:58.375 TEst[11131:3816829] [AppDeveloper] ADBannerView: Unhandled error (no delegate or delegate does not implement didFailToReceiveAdWithError:): Error Domain=ADErrorDomain Code=7 "Ad was unloaded…
0
votes
1 answer

ADBannerView Issues

I have this code on all my viewcontroller pages to control my AdBanner across multiple pages. It works correctly on the last version on my app but for some reason in this update I'm working on I don't think my app is calling either the…
ElectricTiger
  • 111
  • 1
  • 9
0
votes
1 answer

iAds banner is not appearing

I added the iAd framework. I drag and dropped the iAdBannerView onto the view controller. Then I set constraints for the banner. Next I connected the banner to the ViewController.swift file. After doing so I wrote this code :- On top of file…
Krish Wadhwana
  • 1,544
  • 2
  • 12
  • 24
0
votes
1 answer

iOS: Switching apps after user clicks ADBannerView causes OpenGL crash

I have a GLKViewController subclass implementation, with an ADBannerView as a subview. Ads load and render just fine. The OpenGL application also works fine. When you click on an Ad, the popup appears. The GLKViewController has the default…
advayDev1
  • 86
  • 5
0
votes
0 answers

How can we disable iAds with a paid version?

I have created 2 target in my app. 1 for the free version, 1 for the paid version. In my free version, I have an object ADBannerView in my view of my storyboard. But in my paid version I don't want ADBannerView in my storyboard. But I can't get rid…