我正在尝试在我的应用中添加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:
永远不会被调用。
答案 0 :(得分:2)
我们的解决方案是将应用程序设置为仪表板上的“客户端”。