Is it possible to display an ad in a row of a TableView?

Hey fellow Corona devs,

The behavior I’m after is to show an ad in between search results (rows) of a TableView.

Eg:

Search result 1 (TableView row 1)

Search result 2 (TableView row 2)

Show ad (TableView row 3)

Search result 3 (TableView row 4)

Search result 4 (TableView row 5)

Show ad (TableView row 6)

Is there some kind of ad plugin where I could make a request at a particular point in time of rendering the table which would return an ad / image / object to be inserted into a / the row?

Any info would be greatly appreciated.

Thanks.

Corona’s main display content is done in an OpenGL based window. Ads are not OpenGL based and cannot be intermixed with OpenGL based objects like a tableView. Ads are always drawn on top of the OpenGL canvas. Banners can be positioned at the top or bottom of the screen in general. Some ad providers will let you set the Y position of the ad when you show the ad, but it would be impossible to move the ad inside of a tableView of scrollView.

Rob

Corona’s main display content is done in an OpenGL based window. Ads are not OpenGL based and cannot be intermixed with OpenGL based objects like a tableView. Ads are always drawn on top of the OpenGL canvas. Banners can be positioned at the top or bottom of the screen in general. Some ad providers will let you set the Y position of the ad when you show the ad, but it would be impossible to move the ad inside of a tableView of scrollView.

Rob