gpt4 book ai didi

iphone - 向左/向右滑动 UIViewcontroller

转载 作者:行者123 更新时间:2023-12-03 19:33:00 31 4
gpt4 key购买 nike

我正在使用:

ViewController = [[ViewControllerClass alloc] initWithNibName:@"ViewControllerClass" bundle:[NSBundle mainBundle]];
self.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentViewController:frontViewController animated:YES completion:nil];

我试图将 UIViewController 向左滑动,但我不确定为什么它不起作用。我什至在尝试:

UIModalTransitionStyleCrossDissolve

这不起作用。请建议我如何实现将 UIViewController 向左/右滑动。

最佳答案

当您调用 presentViewController:animated:completion: 时,会在当前 View Controller 之上呈现一个模态视图 Controller 。默认的转换是将 View Controller 从底部向上滑动。 UIModalTransitionStyle 枚举定义了四种可能的转换。

模态转换不支持左/右转换。

左/右过渡是使用 UINavigationController 及其 pushViewController:animated: 以及各种 pop... 时的标准过渡方法。

[self.navigationController pushViewController:viewController animated:YES];
<小时/>

要关闭顶 View Controller ,您需要执行以下操作:

[self.navigationController popViewControllerAnimated:YES];

关于iphone - 向左/向右滑动 UIViewcontroller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15182727/

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