Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using iAd as default ad network, and AdMob if iAd fails

Tags:

iphone

admob

iad

I've built my app this way and everything seems to be working more or less. After hearing about the notoriously low iAd fill rate I decided that this would be the best method, but I tried googling it and i couldnt find record of anyone else implementing ads in their app like this. Does this violate the TOS?

like image 349
D-Nice Avatar asked Sep 02 '10 23:09

D-Nice


2 Answers

Why not use Adwhirl. Its great sdk that enables you to do exactly what you need. You can set priority settings for different ad networks which can be changed on the fly if you find one network performing better than others etc.

It handles all the logic for which ad to show based on request failure or priority without you needing to worry about it. All you do is create an adwhirl view and request an ad. Adwhirl does the rest, including appropriate refreshing. If an iAd fails first time, and then shows an admob, but the next iAd loads successfully, it will be shown instead of the admob, assuming you set iAd as a higher priority network.

http://adwhirl.com

like image 118
Jasarien Avatar answered Sep 22 '22 05:09

Jasarien


Are you hiding the ADBannerView by setting visible to NO? With the ADBannerView, if you set visible to NO, then it stops asking for ads. To "hide" the ADBannerView, you need to translate it to someplace off screen.

like image 27
GKYYC Avatar answered Sep 22 '22 05:09

GKYYC