简单实现转场动画

2017-08-31  本文已影响15人  __Objc
MusicPlayViewController * mvc = [MusicPlayViewController shareMusicMananger];

        CATransition *animation = [CATransition animation];
        animation.type = @"rippleEffect";
        animation.subtype = @"fromBottom";
        animation.duration=  1.0;
        animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
        [self.navigationController.view.layer addAnimation:animation forKey:nil];
        
        [self.navigationController pushViewController:mvc animated:YES];


效果还不错

上一篇 下一篇

猜你喜欢

热点阅读