2015-07-20 59 views

回答

4

我發現當前版本的骯髒黑客mopub-ios-sdk(3.9.0)。您可以在服務器上發佈數據(重複值和固定路徑),然後使用MPClientAdPositioning類中的方法。

- (void)addFixedIndexPath:(NSIndexPath *)indexPath; 

- (void)enableRepeatingPositionsWithInterval:(NSUInteger)interval; 

您必須爲插入原生廣告的UITableView獨立計算indexPath。這裏您需要以下方法:

- (NSInteger)numberOfSections; 

- (NSInteger)numberOfRowsInSection:(NSInteger)section; 

這對我很有幫助。也許有人知道更好的解決方案

相關問題