2013-05-10 49 views

回答

2

此鏈接 here索賠但─

使用此Chartboost SDK委託方法來防止插頁廣告,直到第二startSession:

- (BOOL)shouldRequestInterstitialsInFirstSession { 
     return NO; 
    } 
+0

奏效!謝謝! – 2013-05-10 11:49:36

+0

謝謝選擇答案,因爲我的信譽非常低 – iEinstein 2013-05-10 11:51:02

0

[cb startSession];只通知用戶的開始session.not顯示由showInterstitial方法

[cb showInterstitial]; 

所以adds.you顯示廣告時,用戶在應用程序內購買由然後設置布爾關鍵isPurchase YES在您NSUserDefaults

,並檢查顯示廣告時

if(![userDefaults boolForKey:@"isPurchase"]) 
     { 
      NSLog(@"Enter add start "); 

      [[Chartboost sharedChartboost] showInterstitial]; 
     } 
     [userDefaults synchronize]; 

    }