gpt4 book ai didi

ios - CATransition 不起作用

转载 作者:行者123 更新时间:2023-11-29 03:58:34 26 4
gpt4 key购买 nike

我想用波纹过渡制作自定义segue。过渡有效,但没有波纹效果。这是我的代码

    - (void)perform
{
// Add your own animation code here.

CATransition *animation = [CATransition animation];
animation.delegate = self;
animation.duration = 0.7;
animation.timingFunction = UIViewAnimationCurveEaseInOut;
animation.type = @"rippleEffect";

[[[[self sourceViewController] view] layer] addAnimation:animation forKey:@"animation"];

[[self sourceViewController] presentModalViewController:[self destinationViewController] animated:NO];


}

最佳答案

rippleEffect 是一种未记录的动画类型,您不能依赖它在任何特定 iOS 版本之间以相同(或根本)的方式工作,如下所述:ripple effect animation .我强烈建议您自己实现动画或寻找替代方案。

关于ios - CATransition 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16181799/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com