方向改变

时间:2010-07-14 13:22:12

标签: iphone

当视图将其方向从一种模式更改为另一种模式时,我需要显示淡入类型的过渡效果。谁能建议我怎么做?

1 个答案:

答案 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];
}
相关问题