error 썸네일형 리스트형 The app delegate must implement the window property if it wants to use a main storyboard file. iOS 12에서 나오는 문제다. AppDelegate.h 에 UIWindow *window 를 추가해주면 잘된다 [swift] Action extension iOS13 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... [Xcode] failed to find or create execution context for description 1. open Terminal 2. sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService 3. xcode reboot 이전 1 다음