iOS13 이하에서는 잘되던 loadItem이 13부터는 파일을 못가져오는 에러가 발생한다. ㅠㅠ
provider.loadItem(forTypeIdentifier: kUTTypeData as String, options: nil, completionHandler: { (string, error) in
let data = NSData.init(contentsOf:string as! URL)
})
해결 방안 : kUTTypeData 타입을 kUTTypeURL변경하여 해보자!!
provider.loadItem(forTypeIdentifier: kUTTypeURL as String, options: nil, completionHandler: { (string, error) in
let data = NSData.init(contentsOf:string as! URL)
})
'iOS' 카테고리의 다른 글
NMapsMap 네이버 맵 링크 에러 (0) | 2020.10.05 |
---|---|
The app delegate must implement the window property if it wants to use a main storyboard file. (0) | 2020.05.14 |
iOS 13.1 beta 2 (0) | 2019.09.05 |
iOS 13 개발관련 변경점.. (0) | 2019.08.28 |
iOS 13.1 beta (0) | 2019.08.28 |