saasMan
saasMan

Reputation:

Google Adsense within native cocoa-touch iphone app

My planned iphone application will work a remote https web service quite hard so until a user decides to upgrade from the free to pro version of my app I need to generate a trickle of click revenue per free user.

I would like to embed a single line adsense widget within a native cocoa-touch iPhone application. The UI control I have in mind might not exist but would work something like this. The control would occupy a fixed portion of my application's default view and would be initialized by my code and provided with key words determined by my application. The control would then periodically ping Google's adsense system and display a single clickable advert link.

If the user was interested in a link a click would result in an exit of my application followed by the opening of the advertiser's link in Safari.

Has anything like this been done before?

Upvotes: 1

Views: 1565

Answers (3)

Stefan
Stefan

Reputation: 29017

Google's Mobile Adsense is on the run:

TechCrunch article

Upvotes: 0

August
August

Reputation: 12187

Since AdSense requires the content of the page it's on to serve up relevant ads, you're likely to get nothing but PSA ads, since Google can't crawl your app.

And like Isaac says, I'm sure it's against the AdSense terms.

Upvotes: 1

Isaac Waller
Isaac Waller

Reputation: 32730

You have to use a UIWebView with a Adsense unit inside it. I think when you are setting up a ad unit you can enter keywords.
This is most probably a violation of their terms, though. It may be a better idea to try using something else like http://www.admob.com/.

Upvotes: 3

Related Questions