gpt4 book ai didi

swift - iOS 12 应用程序在 iPhone X/XS 的横向模式下与 UIImagePickerController 崩溃

转载 作者:搜寻专家 更新时间:2023-10-31 23:06:50 29 4
gpt4 key购买 nike

我遇到了以下问题,我认为这是 iOS 12 中的错误。这在 iOS 11.4.1 中运行良好。请尝试以下操作。

在 Xcode 10 中打开一个新项目。添加一个 UI 按钮。将以下内容添加到您的 PLIST Privacy - Camera Usage Description 中并附上一些说明。

复制以下代码:

import UIKit

class ViewController: UIViewController {

let imagePickerController = UIImagePickerController()

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
@IBAction func takePic(_ sender: Any) {

takePicture()
}

func takePicture() {

imagePickerController.allowsEditing = false
imagePickerController.sourceType = UIImagePickerController.SourceType.camera
imagePickerController.cameraCaptureMode = .photo
imagePickerController.modalPresentationStyle = .fullScreen

present(imagePickerController, animated: true, completion: nil)
}

}

将 UIButton 连接到 takePic IBAction。

在 iOS 12 设备上运行该应用,因为模拟器没有摄像头。 UIImagePickerController 应该显示相机。

现在从 Xcode Targets-> Deployment Info 的 Device Orientation 中移除 Portrait。再次运行,应用程序将崩溃并显示以下内容:

*** Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and [CAMViewfinderViewController shouldAutorotate] is returning YES'
*** First throw call stack:
(0x1d1ecff78 0x1d10c8284 0x1d1dd075c 0x1ff912b30 0x1ff913130 0x1ff9139a0 0x1ff8fcff0 0x1ff8d70bc 0x1ff8d6e84 0x1ff8d6e84 0x1ff8d6e84 0x1ff8d6e84 0x1ff8c9968 0x1ff8c982c 0x1ff8d9d88 0x1ff894ab4 0x1ff91dbb4 0x1ff550888 0x1ff904430 0x1ff21171c 0x1ff1fed44 0x1ff22fa84 0x1d1e5bfe0 0x1d1e56ab8 0x1d1e5703c 0x1d1e56844 0x1d4105be8 0x1ff205428 0x102f9d9f4 0x1d190c020)
libc++abi.dylib: terminating with uncaught exception of type NSException

这曾经适用于 iOS 11 设备...

由于我有一个应用程序现在正在崩溃,我如何以某种方式欺骗该应用程序以在呈现 UIImagePickerController 之前欺骗该应用程序处于纵向模式?

更新:似乎只在 iPhone X/XS 上崩溃

谢谢。

最佳答案

我在 iOS 12 上的 iPhone X 上遇到了同样的问题,我解决它的方法是:

  • 不在项目文件中设置任何界面方向
  • info.plist 文件中定义初始界面方向,使用键 Initial interface orientation 和值 Landscape (right home button)
  • 最后,在您的每个 UIViewController 中,您应该定义界面方向,例如:

    override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
    返回.landscape
    }

关于swift - iOS 12 应用程序在 iPhone X/XS 的横向模式下与 UIImagePickerController 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52611331/

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