gpt4 book ai didi

ios - 在不使用 [[UIDevice currentDevice] setOrientation :UIInterfaceOrientationAnyOrientation] 的情况下强制 LandScape 方向

转载 作者:可可西里 更新时间:2023-11-01 05:02:05 28 4
gpt4 key购买 nike

我有一个奇怪的问题,我不知道如何解决它!我的应用程序支持任何类型的方向(纵向、横向等),但我设计的新部分( View )仅在横向中有用。因此,当我按下按钮或创建此特定 View 时旋转设备方向后,我必须强制以横向方式加载新 View 。

使用 solve everything 但我在网上看到使用此 API 会导致您的应用程序被 Apple 拒绝。它仍然是真的还是我可以使用它?

有很多 View ,我使用 UIViewController 作为“容器”,所以我可以更好地处理它们。如果使用它本身可能是一个问题,我会很伤心......我尝试使用 CGTransform 旋转 View 并使用 View 容器内的 BOOL 来“锁定”旋转,这解决了布局问题,因此 View 可以正确显示,但是当 textView 成为第一响应者时,键盘将以纵向模式显示。这就是设备方向仍然是纵向的原因。

我还尝试处理键盘布局以正确显示它,但没有任何效果。

感谢您为我提供的任何帮助!

最佳答案

将这段代码放在 viewWillAppear 中

UIViewController *viewController = [[UIViewController alloc] init];
[viewController setModalPresentationStyle:UIModalPresentationCurrentContext];
viewController.view.frame = CGRectZero;
[self presentModalViewController:viewController animated:NO];
[self dismissModalViewControllerAnimated:NO];
[viewController release];

这会将新的 View Controller 旋转到设备方向

关于ios - 在不使用 [[UIDevice currentDevice] setOrientation :UIInterfaceOrientationAnyOrientation] 的情况下强制 LandScape 方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9315381/

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