iad iPhone 5 Storyboard implementation
问题 I have a paid app on the app store, and I'm trying to make a free version of the same app with ads. I was thinking about using iAds. I implemented the following code: -(void)bannerViewDidLoadAd:(ADBannerView *)banner { [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:0.01]; [banner setAlpha:1]; [UIView commitAnimations]; CGRect adFrame = adView.frame; adFrame.origin.y = self.view.frame.size.height; adView.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin; } -