簡體   English   中英

方向改變

[英]orientation change

當視圖將方向從一種模式更改為另一種模式時,我需要顯示淡入淡出的過渡效果。 誰能建議我該怎么做?

我將在此方法中使用動畫塊,如下所示:

- (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];
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM