iAds - Banner + Interstitial?

Hello all,

I couldn’t find anyone with a similar question or anything in the different documentation for iAds, but is it possible to show banner ads AND interstitial ads for iAds?  I noticed ads.hide() doesn’t take a parameter, but just hides the “current ad” as described for Corona’s documentation, and it sounds like, to me, it implies that there can only be one ad type.  Is that true?

When you call ads.show() you tell it what type of ad you want:

ads.show( “banner”, { x=0, y=0 } )

ads.show( “interstitial”, { x=0, y=0 } )

You of course can only have one at a time.

Rob

When you call ads.show() you tell it what type of ad you want:

ads.show( “banner”, { x=0, y=0 } )

ads.show( “interstitial”, { x=0, y=0 } )

You of course can only have one at a time.

Rob