gpt4 book ai didi

ios - 下拉和反弹 Segue 动画

转载 作者:行者123 更新时间:2023-11-29 02:26:20 24 4
gpt4 key购买 nike

我正在尝试复制在 Secret 中看到的以下 segue 动画,它在屏幕底部弹跳。我已经搜索了互联网,但找不到任何可以帮助我的东西。

enter image description here

我正在寻找从顶部下拉并在屏幕底部弹跳的 segue 动画。

目前我有这个,但它不会反弹。

- (void)perform {

UIViewController *srcViewController = (UIViewController *) self.sourceViewController;
UIViewController *destViewController = (UIViewController *) self.destinationViewController;

CATransition *transition = [CATransition animation];
transition.duration = 0.4;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionMoveIn;
transition.subtype = kCATransitionFromBottom;
[srcViewController.view.window.layer addAnimation:transition forKey:nil];

[srcViewController presentViewController:destViewController animated:NO completion:nil];
}

如果有帮助,我会使用 POP 动画引擎。

最佳答案

您需要使用 UIKit Dynamics 进行自定义过渡来执行动画。

关于ios - 下拉和反弹 Segue 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27488654/

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