我的应用程序基本上是使用UISwipeGestureRecognizer构建的 - 当向右侧滑动时,更改屏幕上的文本和背景颜色。现在我可以让iAd在应用程序启动时运行,并在没有加载时隐藏自己。但是我希望每次滑动都能得到这次运行的代码 - 否则我相信任何数量的滑动都会算作一个视图(?)
我一直在使用这个代码,它使用AD Bannerview运行,我已将其拖入我的故事板:
#pragma mark iAd Delegate Methods
-(void) bannerViewDidLoadAd:(ADBannerView *)banner {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1];
[banner setAlpha:1];
[UIView commitAnimations];
}
-(void) bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1];
[banner setAlpha:0];
[UIView commitAnimations];
}