gpt4 book ai didi

iOS7 SDK force Landscape for viewController

转载 作者:行者123 更新时间:2023-11-29 13:03:55 25 4
gpt4 key购买 nike

在 iOS6 上,我有一种方法可以让我的导航式应用程序中的一个 View Controller 在我按下时自动旋转到横向。 (基本上呈现一个伪造的 View Controller 并在 viewWillAppear 中将其关闭)。

UIViewController *mVC = [[UIViewController alloc] init];
[self presentModalViewController:mVC animated:NO];
if (![mVC isBeingDismissed])
[self dismissModalViewControllerAnimated:NO];

在最新的 SDK 中,这不再有效。谁有其他自动旋转的方法?

最佳答案

事实证明解决方案很简单,只需将 YES 传递给 dismissModalViewControllerAnimated

UIViewController *mVC = [[UIViewController alloc] init];
[self presentModalViewController:mVC animated:NO];
if (![mVC isBeingDismissed])
[self dismissModalViewControllerAnimated:YES]; //Fix here

关于iOS7 SDK force Landscape for viewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19094369/

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