Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 9 down vote accepted

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

share|improve this answer
This is the solution I decided upon, but I'm having some issues come up after I implemented AdWhirl. Most importantly, the app will request an ad on startup and fail only to never make another request! Often times i load the app and the app will never get to neither adWhirlDidReceiveAd: nor adWhirlDidFailToReceiveAd:. Also, my iAd requests always fail so I cant even see the ad frame that I need in order to visually finish the integration of the ads into my app! – D-Nice Sep 5 '10 at 5:08
How's your fillrate with iAds ? Are you getting some ads at all ? – Goles Sep 9 '10 at 5:36
adwirl doesn't support ARC yet. – Jim Thio Oct 25 '12 at 1:46

I have iAds and Admob.

I highly recommending loading an iAd first and if you dont get an Ad use admob. iAd has a much higher ECPM than admob if you get an ad. Remember that iAd refreshes every 30s so the did not get ad method will be called several times.

My app has been approved you can get it, Octopus Oracle. http://kurl.ws/Ay

share|improve this answer
Great, thanks for that information. Two admob ads were appearing on screen and I was able to solve it after realizing that the iad fail method is getting called every 30 seconds. How are you handling the case where iAd initially fails, you successfully place an admob ad in the view, then iAd succeeds some time after that. Can such a situation every occur? – D-Nice Sep 2 '10 at 23:39
I think I hide the iAd view, just in case. What I probably would do is put the iAd view back in and remove admob. iAd will make you quite a bit more money. – John Ballinger Sep 3 '10 at 1:31

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.

share|improve this answer

You can use AdWhirl and its best tutorial is here Tutorial

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.