I've completely and properly (to my understanding) setup AdMob mediation so that my iAd will show up before my AdMob ad, and if the iAd doesn't fill then I would like to show the AdMob ad. Thing is, iAd banner never shows up..EVER! If I disable iAd in my AdMob account everything works perfectly and AdMobs show up but I would really like to get both working. Any help on this matter would be greatly appreciated. (I've followed Googles guide to setting up mediation). Anyone else having this issue?
Thanks in advance for any help :)
Have you added the admob adapter for iAds to your project? It can be found here,
https://developers.google.com/mobile-ads-sdk/docs/admob/ios/mediation-networks
Direct download link : https://dl.google.com/dl/googleadmobadssdk/libadapteriad.zip
If not AdMob won't be able to serve iAds via their mediation SDK.
Weird solution but it worked:
By following the guide provided by Google to setup Ad Mediation in iOS, it tells you to implememnt it via Storyboard/nib. Once I removed this method and simply implemented the GADBannerView programmatically, everything began to work as expected. Quite the annoying issue, but thankfully it's solved and I can move on.
Related
I am currently building an IOS app with React Native, and I am looking into how to prevent users from taking screenshots on certain parts of the app.
I read this article on this issue: https://www.netguru.com/blog/prevent-screenshots-react-native, and I learned that there are basically two options. I can either use the paid ScreenShieldKit SDK or I can create an invisible screen animation that somehow covers the content of the app in a screenshot.
I am not looking to pay for ScreenShieldKit, so how can I go about making this animation to cover screenshots on my app, and will it even work?
Any help is appreciated. Thanks!
The two options for preventing screenshots on a React Native IOS App
ScreenShieldKit's technology is patented. And more likely than not, it is based on the other solution which you yourself know of (invisible screen animation). So it may not be wise to post the exact code here, as it could very well infringe upon their patent.
I'm trying to integrate Facebook Native Ads in my app using that guide:
https://friendlyublog.com/implementing-native-facebook-ads-for-ios-apps-9dc4174ae1a3
The ads load just fine and I can display them in my TableView, but it seems I can't make them tappable despite using registerView as documented in the SDK.
Did any of you meet the same issue? Any idea what could make registerView not work? Something is obviously messing with tap events but I just can't figure out what's going on...
Any help or pointers would be greatly appreciated...
I've developed an app for iOS with Swift and now I'd like to add an ADBannerView in my tableviewcontroller just to show some iAd banners.
This is what I did :
I linked the iAd framework
In the ViewDidLoad of my tableviewcontroller I have added the following code :
self.canDisplayBannerAds = true
Quite easy! Perhaps too easy, because everything seemed to work fine, the view displayed the ad correctly but... performance was really bad!! My tableview scrolls smooth if I don't show the ad and keeps lagging while the ad is displayed... how come? What have I missed?
Thanks a lot
D.
thanks for your help, I was totally wrong, iAd wasn't the cause of slowness of my app.
I've found the problem (I was setting the font of a textbox inside the cellforrowatindexpath method).
I've upvoted your comments because they were the correct way to find the issue.
thanks again
All the best
D.
I need helping using iAds in my application. I currently am not using any storyboards. I am using Sprite Builder for my UI.
I attached an image to show all the different file name I have.
The "iAdViewController.h & .m" files are just example codes I looked up and was messing with so that my iAd can work.
I keep trying to learn how to do it but nothing seems to be what I want.
How would I go about simply putting iAds at the bottom of the screen while using
Sprite Builder for my user interface?
image here: https://discussions.apple.com/servlet/JiveServlet/showImage/2-25162857-394216/Screen+Shot+2014-03-14+at+12.11.14+AM.png
In xCode place the iADs code in your project and in the project setting enable iADs under capabilities.
I'm trying to integrate iAd in iOS 7 app. According to Apple tutorial, one just have to use method:
self.canDisplayBannerAds
and iAd will work without a hitch. As I use it according to the tutorials, it gives a blank white screen. How to integrate iAds then? Do I have to use ADBannerViewDelegate so something else. Kindly explain
Im not sure about the simulator but if your testing on a device you need to do the following. Go into your settings select developer and select fill rate then 100%.
do you figure out mentioned issue?
I guess you need to implement the adbannerviewdelegate to handle load, unload, failed load scenarios. The blank white screen may be caused by network connectivity.