每当我使用石英动画时,动画的背景都是白色的。我怎样才能将其更改为不同的颜色。这是我用来制作动画的代码
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:superview cache:YES];
[superview addSubview:backview];
[defaultview removeFromSuperview];
[UIView commitAnimations];