每 3 场比赛播放插页式广告

Play interstitial ad every 3rd game

我正在使用 HeyZap 中介 SDK。我已将所有中介设置得非常好,但我希望插页式广告每 3 场比赛展示一次。

我在 Stack Overflow 上尝试了一些解决方案,但它们适用于 AdMob。

现在,我有:

-(void) GameOver {
  ....
  [HZInterstitialAd show];
}

如何实现?

记录已玩游戏的次数,然后仅在

时显示
static int count = 0;
-(void) GameOver {
  if(count != 0 && count % 3 == 0)
    [HZInterstitialAd show];

  count++;
}