我正在尝试在我的应用程序中添加Adcolony。这是我的代码:
[AdColony configureWithAppID:myAppID
zoneIDs:@[myZoneID]
delegate:self
logging:YES];
[AdColony playVideoAdForZone:myZoneID withDelegate:self withV4VCPrePopup:YES andV4VCPostPopup:YES];
-(void)onAdColonyV4VCReward:(BOOL)success currencyName:(NSString *)currencyName currencyAmount:(int)amount inZone:(NSString *)zoneID
{
if (success) {
// some code
}
}问题是委托方法onAdColonyV4VCReward:从未被调用。
发布于 2014-03-28 12:01:53
我们的解决方案是将应用程序设置为仪表板上的“客户端”。
https://stackoverflow.com/questions/22365685
复制相似问题