UIView.Transition Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Transition(UIView, Double, UIViewAnimationOptions, Action, Action) |
Spécifie une animation de transition sur la vue de collection spécifiée. |
Transition(UIView, UIView, Double, UIViewAnimationOptions, Action) |
Spécifie une animation de transition sur la vue de collection spécifiée. |
Transition(UIView, Double, UIViewAnimationOptions, Action, Action)
Spécifie une animation de transition sur la vue de collection spécifiée.
[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
Paramètres
- withView
- UIView
Vue qui effectue la transition.
- duration
- Double
Durée définie pour l’animation de transition.
- options
- UIViewAnimationOptions
Masque d’options définissant les performances des animations.
- animation
- Action
Objet d’action contenant les modifications à apporter à la vue spécifiée.
- completion
- Action
Objet d’action à exécuter une fois la séquence d’animation terminée.
- Attributs
Remarques
L’utilisation de cette méthode est déconseillée. Les développeurs d’applications doivent préférer utiliser la UIViewPropertyAnimator classe pour animer les UIViews.
S’applique à
Transition(UIView, UIView, Double, UIViewAnimationOptions, Action)
Spécifie une animation de transition sur la vue de collection spécifiée.
[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
Paramètres
- fromView
- UIView
Vue initiale.
- toView
- UIView
Vue finale.
- duration
- Double
Durée, en secondes, de l’animation.
- options
- UIViewAnimationOptions
Masque d’options à utiliser avec l’animation.
- completion
- Action
Action à exécuter à la fin de l’animation.
- Attributs
Remarques
L’utilisation de cette méthode est déconseillée. Les développeurs d’applications doivent préférer utiliser la UIViewPropertyAnimator classe pour animer les UIViews.