共用方式為


UIView.Transition 方法

定義

多載

Transition(UIView, Double, UIViewAnimationOptions, Action, Action)

指定指定集合檢視上的轉換動畫。

Transition(UIView, UIView, Double, UIViewAnimationOptions, Action)

指定指定集合檢視上的轉換動畫。

Transition(UIView, Double, UIViewAnimationOptions, Action, Action)

指定指定集合檢視上的轉換動畫。

[Foundation.Advice("Use the *Notify method that has 'UICompletionHandler completion' parameter, the 'bool' will tell you if the operation finished.")]
public static void Transition (UIKit.UIView withView, double duration, UIKit.UIViewAnimationOptions options, Action animation, Action completion);
static member Transition : UIKit.UIView * double * UIKit.UIViewAnimationOptions * Action * Action -> unit

參數

withView
UIView

執行轉換的檢視。

duration
Double

轉換動畫的持續時間設定。

options
UIViewAnimationOptions

定義動畫效能的選項遮罩。

animation
Action

包含對指定檢視進行變更的動作物件。

completion
Action

動畫順序完成時要執行的動作物件。

屬性

備註

不建議使用此方法。 應用程式開發人員應該偏好使用 UIViewPropertyAnimator 類別來建立 UIView 的動畫效果。

適用於

Transition(UIView, UIView, Double, UIViewAnimationOptions, Action)

指定指定集合檢視上的轉換動畫。

[Foundation.Advice("Use the *Notify method that has 'UICompletionHandler completion' parameter, the 'bool' will tell you if the operation finished.")]
public static void Transition (UIKit.UIView fromView, UIKit.UIView toView, double duration, UIKit.UIViewAnimationOptions options, Action completion);
static member Transition : UIKit.UIView * UIKit.UIView * double * UIKit.UIViewAnimationOptions * Action -> unit

參數

fromView
UIView

初始檢視。

toView
UIView

最終檢視。

duration
Double

動畫的持續時間,以秒為單位。

options
UIViewAnimationOptions

要與動畫搭配使用的選項遮罩。

completion
Action

要于動畫結尾執行的動作。

屬性

備註

不建議使用此方法。 應用程式開發人員應該偏好使用 UIViewPropertyAnimator 類別來建立 UIView 的動畫效果。

適用於