Flurry Ads iOS Banners dismiss - ios

Does anybody have experience with Flurry Ads? I am able to get their test ads to display. However, when I display a banner ad, there is no 'x' for the user to dismiss the ad itself. Does anyone know if this is intentional? Do I have to write my own code to give the user a specific banner dismissal action? Or am I doing something wrong?

I use Flurry Ads and no, there is no built-in close button on their banners. If you want the user to be able to close banners, you will need to create your own UI and implement the removeAdFromSpace method on your ad space.

Related

How to stop showing AdMob banner ad correctly?

I am building an app which will display AdMob banner ad, and when user successfully purchased an IAP item, the banner ad will never show up again, and the screen area originally occupied by the banner ad will be used by the app real functions.
The question is how to dismiss the bannerView or does not init it on the next launch up? And how to insure AdMob Sdk will never refresh the ad content in the background?
I think we cannot just hide the bannerView with just a statement:
bannerView.isHidden = true
And, as we know, AdMob SDK use IDFA. But Apple will deny an app which use IDFA but not showing Ads.
Google has guides on how to show up ads, but I cannot find information about how to stop showing ads from Google.
How to get this problem out?
The question is how to dismiss the bannerView or does not init it on
the next launch up? And how to insure AdMob Sdk will never refresh the
ad content in the background?
There are multiple ways to do this. One way I can think of is to add multiple targets in your Xcode project.
And the easier way, the more practical way - at least for me, is to prevent the requests for ads through GADRequest().
You can even do this even in AppDelegate, when setting Ids to your SDK.
That's it. You may also set nil to the delegate property of your bannerView.
And like what you've mentioned, just hide the bannerView's container, and everything should be perfect. I've worked on lots of applications with Admob, and I believe there should be no problem doing this approach.

Does AdMob know if an ad is not visible?

I am implementing AdMob into my app. My banner is inside a UIView that is set to alpha 0.0. When the user wants to search, it fades in.
Does Google Ad Services know whether the ad is hidden and would it count as an impression? I don’t want to break any rules but I can’t find any info about this.
I have not had any problems so far, and it seems that there is code implemented to detect this. So an ad on a hidden view should not cause any problems with the AdMob account as it won't count impressions while hidden.

How to check if there are Chartboost Rewarded Ads available to display?

In my Swift iOS game I have a button that I show after the player loses, this button shows a rewarded ad from Chartboost.
The problem is that sometimes, i get an error on ad retrieval (error code 6) which is "No Ad Available". So i'm running out of ads for my region, i don't know why. Sometimes i'm able to watch 2-3 ads and that's all i can watch per day.
So when im running out of ads, the button still stays there of course, but does nothing. It might be confusing for the users to press the button and not see anything happening.
So i wanted to check if there are ads available, just hide the button.
The method i'm using to check if there is an ad available is:
Chartboost.hasRewardedVideo(CBLocationDefault)
But this somehow, is returning always false, no matter what CBLocation I use.
And I trigger the showAd() like this:
Chartboost.showRewardedVideo(CBLocationDefault)
Any suggestion?
Thanks.
What region are you currently located in? Chartboost might have some trouble filling ad requests if you happen to be located in a country like Pakistan or Thailand. It may be a simple case of not having enough advertisers in your area that meet your publishing criteria.
Also, are you trying to show an ad right away on your application's bootup or is it ingame somewhere?

IOS How can I put a remove ads button over a revmob fullscreen ad when it shows?

I am relatively new to objective-c but have built a few small apps. I implemented a revmob fullscreen ad in my app and would like to have a "remove ads" button next to the "X" to capture their attention at the right moment. Any suggestions on how to do this?
I doubt you can do that, as ad providers need to guarantee you're not hiding the ad from the customers. And if you could do it, it might be against your ad contract.

How to load ADInterstitialAd only when required in iOS?

I would like to show interstitial ads in my iOS application for some specified time interval.
Also, I do not want to disturb the User Interaction. I would like to show this Interstitial Ad when user tries to navigate from the scree/some other action.
But, I don't see any method/call in iOS that would load the InterstitialAd when required.
Also, [interstitialAdObj presentFromViewController] is also deprecated in iOS 7.
My question is, what is the another way to show/present the interstitial ads only when required?
This one works for me in iOS 7. Found in the ADInterstitialAdDelegate
-(BOOL)presentInView:(UIView *)containerView;
Also
-(BOOL)requestInterstitialAdPresentation NS_AVAILABLE_IOS(7_0);
I hope that helps you.

Resources