当视图将其方向从一种模式更改为另一种模式时,我需要显示淡入类型的过渡效果。谁能建议我怎么做?
答案 0 :(得分:1)
我会在这个方法中使用动画块,如下所示:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[UIView beginAnimations:@"InterfaceFade" context:nil];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:duration];
// Change properties to animate here (Ex: view.alpha = 0.0)
[UIView commitAnimations];
}