HeyZap(SDK 10.2.1)IOS委托函数未调用

时间:2016-12-07 19:45:39

标签: ios swift heyzap

我正在将iOS HeyZap集成到iOS应用程序中。

我可以获取()并显示()一个IncentivizedAd。

但是我不能使用回调委托函数。

这三种方式对我不起作用(通知,完成(HZIncentivizedAd.ShowWithOptions),以及HZAdsDelegate,我的班级声明了HZIncentivizedAdDelegate。

class GridLigueController: MyViewController, UITableViewDataSource, HZAdsDelegate, HZIncentivizedAdDelegate {

 func didShowAdNotificationHandler() {
    print("didShowAdNotificationHandler")
 }

// Configure with NSNotification Listener
// function called on viewDidLoad
 func configureRewardVideo() {

    HZIncentivizedAd.setDelegate(self)
    NSNotificationCenter.defaultCenter().addObserver(self, selector:#selector(didShowAdNotificationHandler), name:HZMediationDidShowAdNotification, object:nil)
    if adRequestInProgress == false && HZIncentivizedAd.isAvailable() == false {
        HZIncentivizedAd.fetch()
        adRequestInProgress = true
        print("[Debug] - adRequestInProgress...")
    } else {
        print("[Debug] - Reward video not ready : \(adRequestInProgress)")
    }

// Completion on showWithOptions
 func completion(success: Bool, error: NSError!) -> Void {
    if success {
        print("success showing an ad")
    } else {
        print("error showing an ad; error was %@",error)
    }
 }

 func showAd() {
  if  HZIncentivizedAd.isAvailable()  {
        let options = HZShowOptions()
        options.viewController = self
        options.completion = self.completion
        HZIncentivizedAd.showWithOptions(options)
        print("[Debug] - HZIncentivizedAd video is ready, should be shown")
  } else { // show an alert }
 }

// Normal Delegate function
 func didReceiveAdWithTag(tag: String!) {
    print("didReceiveAdWithTag")
 }

 func didShowAdWithTag(tag: String!) {
    print("didShowAdWithTag")
 }

 func didFailToCompleteAdWithTag(tag: String!) {
    print("didFailToCompleteAdWithTag")
 }

 func didCompleteAdWithTag(tag: String!) {
    print("didCompleteAdWithTag")
 }

}

我忘记了要初始化的内容吗? 我使用Xcode 7.3.1和Swift 2.3

感谢您的帮助

2 个答案:

答案 0 :(得分:1)

Heyzap 10.2.1确实存在回调问题。我们在发布后迅速将其从我们的网站上撤下,并将获得10.2.2。今天要取代它。很抱歉给您带来不便!

来源:我在Heyzap工作

答案 1 :(得分:0)

HeyZap给我发了一条消息,我使用的SDK版本(10.2.1)在回调中遇到了问题。

现在这样可行。