File

    [Swift] iOS 기기 내 PDF 혹은 파일 첨부 하는 방법

    일하다가 요건으로 pdf 파일을 넘겨줘야하는 상황이 있었다. 애플에서 미리 만들어 놓은 함수를 통해 간단히 파일을 끌어올 수 있었다. 나의 기억력은 나쁘기 때문에 까먹으면 다음에 써먹으려고 적는다... import UniformTypeIdentifiers import PDFKit class VC: UIViewController { let filePickerViewController = UIDocumentPickerViewController(forOpeningContentTypes: [UTType.pdf], asCopy: true) ... func someThingEvent() { filePickerViewController.delegate = self filePickerViewController.allo..