iDev

iAd 적용시 주의 할점 - [#iOSDevKor]

KraZYeom 2010. 7. 14. 07:33
반응형
iAd HIG에 나와있는데로 꼭! 

- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error

{

if (self.bannerIsVisible)

{

[UIView beginAnimations:@"animateAdBannerOff" context:NULL];

// banner is visible and we move it out of the screen, due to connection issue

banner.frame = CGRectOffset(banner.frame, 0, -50);

[UIView commitAnimations];

self.bannerIsVisible = NO;

}

}


필수로 구현해주어야 합니다. 안그러면 Reject ! 
반응형