fliping view continiously
问题 this my code [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:1.5]; if ([sender tag] == 1) { [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:placeholder cache:YES]; } else { [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.view cache:YES]; } if (view1OnTop) { [view1 removeFromSuperview]; [placeholder addSubview:view2]; } else { [view2 removeFromSuperview]; [placeholder addSubview:view1]; } [UIView