'Interesting'에 해당되는 글 192건
- 2010.07.27 [ARU] iphone 버전 개발중 1
- 2010.07.17 Leadership 에 대하여
- 2010.07.10 [iPhone] iAd 붙여넣기
- (void)bannerViewDidLoadAd:(ADBannerView *)banner
{
if (!self.bannerIsVisible)
{
NSLog(@"bannerViewDidLoadAd -----");
[UIView beginAnimations:@"animateAdBannerOn" context:NULL];
// assumes the banner view is offset 50 pixels so that it is not visible.
banner.frame = CGRectOffset(banner.frame, 0, 50);//50
[UIView commitAnimations];
self.bannerIsVisible = YES;
}
}
- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error
{//NSLog(@"didFailToReceiveAdWithError");
if (self.bannerIsVisible)
{
NSLog(@"didFailToReceiveAdWithError");
[UIView beginAnimations:@"animateAdBannerOff" context:NULL];
// assumes the banner view is at the top of the screen.
banner.frame = CGRectOffset(banner.frame, 0, -50);//-50);
[UIView commitAnimations];
self.bannerIsVisible = NO;
}
}