web-dev-qa-db-fra.com

afficher l'animation lorsque la vue suivante est ajoutée

Je veux ajouter une sous-vue avec animation. J'utilise add sub view pour qu'il ne montre aucune animation, donc je veux montrer n'importe quelle animation lorsque je le fais ... J'utilise le code ci-dessous: -

UIViewController *vControllerHome = [[viewTemp alloc] initWithNibName:@"viewTemp" bundle:nil];
vControllerHome.view.frame =CGRectMake(0, 0, 320, 414);
[self.view addSubview:vControllerHome.view];
self.selectedViewController = vControllerHome;

Quelqu'un peut-il suggérer comment je fais cela?

18
Mitesh Khatri

Voici le code .. Essayez-le.

PS: remplacez myView par le nom de la vue à remplacer.

CATransition *applicationLoadViewIn =[CATransition animation];
[applicationLoadViewIn setDuration:duration];
[applicationLoadViewIn setType:kCATransitionReveal];
[applicationLoadViewIn setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]];
[[myView layer]addAnimation:applicationLoadViewIn forKey:kCATransitionReveal];
38
Suresh Varma

voici pour les blocs d'animation

[UIView transitionWithView:containerView 
                  duration:0.5 
               options:UIViewAnimationTransitionFlipFromRight //any animation
            animations:^ { [containerView addSubview:subview]; }
            completion:nil];
26
adedoy

Peut-être que vous pouvez sous-classer UIView et surcharger la méthode willMove(toSuperview newSuperview: UIView?)

Voici un exemple:

override public func willMove(toSuperview newSuperview: UIView?) {
    super.willMove(toSuperview: newSuperview)

    if let _ = newSuperview {
        // This view will be added to some view
        UIView.animate(withDuration: 0.2, delay: 0.0, usingSpringWithDamping: 0.6, initialSpringVelocity: 30.0, options: .curveEaseInOut, animations: {
            //...
        }, completion: { (finish) in

        })
    } else {
        // This view will be removed
    }
}
0
Hawe