在我的游戏中,我添加了iAd。
我想添加一些代码,告诉应用程序仅在场景为 GameOverScene 或 NewGameScene 场景时才加载横幅,并使游戏场景中没有任何广告。
我该怎么做呢? (这是obj-c的新增功能)。
最佳答案
自动地,当您将ADBannerView
的alpha设置为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
}
关于ios - 在游戏场景中隐藏iAd标语?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22549754/