gpt4 book ai didi

ios - 如何在导航 Controller 中的 2 个 iOS View 之间制作 "return"动画?

转载 作者:行者123 更新时间:2023-11-29 11:11:56 30 4
gpt4 key购买 nike

如何在导航 Controller 中的 2 个 iOS View 之间制作“返回”动画?

我所说的“返回”是指 View 沿垂直轴自行返回。当您为研究选择过滤器时,您可以在亚马逊 iOS 应用程序中看到一个示例。

最佳答案

要做到这一点,你不能使用导航 Controller 您将需要使用 View Controller presentModalViewController 并在要呈现的新 View Controller 中设置 modalPresentationStyle = UIModalTransitionStyleFlipHorizo​​ntal;

//Create the view
UIViewController *controller = [[UIViewController alloc] init];
controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:controller animated:YES];

关于ios - 如何在导航 Controller 中的 2 个 iOS View 之间制作 "return"动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11155498/

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