Does the ad view need to always be visible for an impression to count? Such as could the ad view be at the bottom of a scroll view out of sight until the user reaches the bottom. Most ad views implementations I have seen have the ad view static on top of any content.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
It is against apple's design docs to put ads in scrollable content. It would probably count but you will risk rejection. Another problem is that it needs time to fill an ad so you'd likely end up getting more ad requests and not enough fills and it will appear to be click fraud. On that note I have accomplished a very hacked version of what you're asking. I had an add not be within the tableview but rather float with it and "clip" to the top or the bottom. The biggest problem with putting an ad in a tableview cell is it gets recycled every time it scrolls off the view. In the end I'd recommend just accepting putting the at statically on the top or bottom. |
|||||
|