4

I'm using MonoTouch for an iPhone game, just wondering: is it possible to implement in-app advertising using MonoTouch and if so how would I go about doing it?

Thanks for any help!

meds
  • 21,699
  • 37
  • 163
  • 314

1 Answers1

7

Your best bet would be using the iAd framework which has been bound. (Monotouch.iAd)

edit

To help you get started: See this blog post

Luke
  • 3,665
  • 1
  • 19
  • 39
  • oh right, and it should be ok to use the iAd framework in conjunction with the fact monotouch is using opengl? (sorry I'm a total newbie to this!) – meds May 04 '11 at 09:58
  • Are you using `glView` rather than a `UIViewController`? – Luke May 04 '11 at 10:11
  • Then you should be AOK to use iAd as normal ! – Luke May 04 '11 at 10:19
  • Note if you find it crashes on the device, there is a fix: http://stackoverflow.com/questions/5819952/monotouch-app-with-iads-runs-on-simulator-crashes-on-device – vlad259 May 04 '11 at 14:27