애니메이션효과로 탭바 숨기고 보이기 - (void) hidetabbar:(BOOL)hide { [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:0.2]; for(UIView *view in self.tabBarController.view.subviews) { if([view isKindOfClass:[UITabBar class]]) { if (!hide) [view setFrame:CGRectMake(view.frame.origin.x, 431, view.frame.size.width, view.frame.size.height)]; else [view setFrame:CGRectMake(view.frame.origin.x, 480, view.frame.size.. 더보기 이전 1 ··· 35 36 37 38 39 40 41 ··· 95 다음