2013-01-03 51 views
1

我在我的應用程序中集成了Playhaven全屏廣告。在全屏廣告加載時執行兩項操作。一個是關閉視圖,二是去App Store。當兩個動作都執行時,我必須檢查哪些函數被調用。Playhaven SDK無法工作

我已經嘗試以下功能

-(void)request:(PHPublisherContentRequest *)request contentDidDismissWithType:(PHPublisherContentDismissType *)type{ 

    NSLog(@"Type %@",type); 

} 

,但它返回我的字符串PHPublisherContentUnitTriggeredDismiss兩種情況。

如何在兩個按鈕上單擊添加差異操作?

回答

3

目前,Playhaven SDK不會區分觸發contentDidDismissWithType委託的解僱類型。不過,我知道這是我們將來要加入的東西。

相關問題