1

在我的游戏中,我添加了 iAd。

我想添加一些代码,告诉应用程序仅在场景为 GameOverScene 或 NewGameScene 时加载横幅,并使游戏场景远离任何广告。

我该怎么做呢?(对 obj-c 来说相当新)。

4

1 回答 1

1

自动将 , 的 alpha 设置ADBannerView为 0 时,它将被禁用,并且不会显示任何广告。因此,当调用该方法开始游戏时,您还应该添加以下代码:

[myAdBanner setAlpha:0];

然后,当用户返回主菜单或退出他们玩游戏的部分时,您应该添加以下代码:

[myAdBanner setAlpha:1];

如果你想在禁用或启用横幅视图时做一个漂亮的动画,你可以这样做:

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:(duration in seconds)];
[banner setAlpha:(0 to disable, 1 to enable)];
[UIView commitAnimations];

使用所有这些代码的示例,使用动画使横幅视图淡入淡出:

- (IBAction)startGame{
    //user starts the game
    [UIView beginAnimations:nil context:NULL];//initiate the animation
    [UIView setAnimationDuration:1];//make an animation 1 second long
    [banner setAlpha:0];//disable the ad by making it invisible
    [UIView commitAnimations];//do the animation above
}

- (IBAction)endGame{
    //user wins, loose, or ends the game
    [UIView beginAnimations:nil context:NULL];//initiate the animation
    [UIView setAnimationDuration:1];//make an animation 1 second long
    [banner setAlpha:1];//enable the ad by making it visible
    [UIView commitAnimations];//do the animation above
}
于 2014-03-22T17:25:07.060 回答