我在这里找到了一个可接受的Objective-C答案:
Play interstitial ad every 3rd game
但是,我正试图在Swift中做同样的事情。我正在寻找如何编写静态变量。
这是Objective-C代码:
static int count = 0;
-(void) GameOver {
if(count != 0 && count % 3 == 0)
[HZInterstitialAd show];
count++;
}
答案 0 :(得分:2)
private var count = 0
func GameOver {
if (count != 0 && count % 3 == 0) {
HZInterstitialAd.show()
}
count++
}