HeyZap (SDK 10.2.1) IOS 未调用委托函数
HeyZap (SDK 10.2.1) IOS Delegate function not called
我正在 iOS 应用程序中集成 SDK HeyZap。
我可以 fetch() 和 show() 一个激励广告。
但是我不能使用回调委托函数。
这三种方式对我不起作用(通知、完成(HZIncentivizedAd.ShowWithOptions),以及使用 HZAdsDelegate、HZIncentivizedAdDelegate 在我的 class 上声明。
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
谢谢你帮助我
HeyZap给我发消息,我用的SDK版本(10.2.1)回调有问题
现在可以正常工作了。
Heyzap 10.2.1 确实存在回调问题。我们在发布后迅速将其从网站上撤下,并将发布 10.2.2。今天出来更换它。抱歉给您带来不便!
来源:我在 Heyzap 工作
我正在 iOS 应用程序中集成 SDK HeyZap。
我可以 fetch() 和 show() 一个激励广告。
但是我不能使用回调委托函数。
这三种方式对我不起作用(通知、完成(HZIncentivizedAd.ShowWithOptions),以及使用 HZAdsDelegate、HZIncentivizedAdDelegate 在我的 class 上声明。
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
谢谢你帮助我
HeyZap给我发消息,我用的SDK版本(10.2.1)回调有问题
现在可以正常工作了。
Heyzap 10.2.1 确实存在回调问题。我们在发布后迅速将其从网站上撤下,并将发布 10.2.2。今天出来更换它。抱歉给您带来不便!
来源:我在 Heyzap 工作