1

UIViewControllerRepresentable で VNDocumentCameraViewController を使用しているときに、カメラ スキャン ビューをセーフ領域に拡張するにはどうすればよいですか?

ここにコードがあります

struct ScanDocumentView: UIViewControllerRepresentable {
    
    func makeCoordinator() -> Coordinator {
        Coordinator(recognizedText: $recognizedText, parent: self)
    }
    
    func makeUIViewController(context: Context) -> VNDocumentCameraViewController {
        let documentViewController = VNDocumentCameraViewController()
        documentViewController.delegate = context.coordinator
        return documentViewController
    }
    
    func updateUIViewController(_ uiViewController: VNDocumentCameraViewController, context: Context) {
        // nothing to do here
    }
}

下部の安全領域が空白の場合の動作は次のとおりです 行動

4

1 に答える 1