반응형
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 !
반응형
'iDev' 카테고리의 다른 글
[iOS Dev] modifying layer that is being finalized - error (0) | 2010.12.15 |
---|---|
Linking Error: CGRectZero and CGRectOffset - [#iOSDevKor] (0) | 2010.07.14 |
JailBreak 한건지 안한건지 판별 - [#iOSDevKor] (0) | 2010.07.13 |
코드 한자 없이 iAd 적용하기 (2) | 2010.07.04 |
[iOS Dev] 개발시 가장 중요한건 HIG (0) | 2010.06.27 |