我在我的一个iphone应用程序中使用iAd,有时当它无法加载时,它会离开屏幕,这是我使用的代码:
-(void)bannerView:(ADBannerView *)aBanner didFailToReceiveAdWithError:(NSError *)error {
if (!self.bannerIsVisible) {
[UIView beginAnimations:@"animatedAdBannerOff" context:NULL];
banner.frame = CGRectOffset(banner.frame, 0.0, -320.0);
[UIView commitAnimations];
self.bannerIsVisible = NO;
}
事情就是当它执行加载时只有一个空格,我怎么写就像标签错误广告无法加载,或类似的东西???感谢
答案 0 :(得分:2)
使用UIAlertView
:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Could not display iAd" delegate:nil cancelButtonTitle:@"Dismiss" otherButtonTitles:nil, nil];
[alert show];