以下のようなコードでドキュメントフォルダに保存しようとしているのですが、なぜか失敗してしまい困っています。
PDFを保存する時は別の処理が必要なのでしょうか?
class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let documentPath = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0] let pathFileName = documentPath.appendingPathComponent( "save-file" ) do { let pdfPath: String = Bundle.main.path(forResource: "hogehoge", ofType: "pdf")! let url = URL(string: pdfPath)! let data = try Data(contentsOf: url) try data.write(to: pathFileName) print("成功") } catch { print("失敗") } } }---
Errorは以下のようなものが表示されています
error
12021-12-08 21:52:07.475673+0900 DocumentSample[5598:1051227] nil host used in call to allowsSpecificHTTPSCertificateForHost 22021-12-08 21:52:07.475743+0900 DocumentSample[5598:1051227] nil host used in call to allowsAnyHTTPSCertificateForHost: 32021-12-08 21:52:07.538424+0900 DocumentSample[5598:1051455] NSURLConnection finished with error - code -1002
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/11 12:24