我在我的应用程序中集成了Playhaven全屏广告。全屏广告加载时执行两个操作。一种是关闭视图,第二种是进入App Store。我必须检查两个动作都执行时调用了哪个函数。
我已经尝试过以下功能
-(void)request:(PHPublisherContentRequest *)request contentDidDismissWithType:(PHPublisherContentDismissType *)type{
NSLog(@"Type %@",type);
}
但在两种情况下都返回字符串PHPublisherContentUnitTriggeredDismiss。
如何在“两个按钮都单击”上添加“不同”操作?
最佳答案
当前,Playhaven SDK不会在触发contentDidDismissWithType委托时区分解雇的类型。我知道这是我们将来希望添加的内容。