美文网首页
简单实现转场动画

简单实现转场动画

作者: __Objc | 来源:发表于2017-08-31 17:36 被阅读15次
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];


效果还不错

相关文章

网友评论

      本文标题:简单实现转场动画

      本文链接:https://www.haomeiwen.com/subject/wfxcjxtx.html