お世話になります。
SwiftでNSSavePanelを使ってxmlファイルを保存しようとしています。
保存ダイアログは表示されるのですが、新しいファイルの名前を入力して保存ボタンを押しても、エラーが発生して、ダイアログが閉じません。
何が原因か分かる方お願いします。
Swift
1 let sp = NSSavePanel() 2 sp.title = "保存ダイアログ" 3 sp.prompt = "保存" 4 sp.allowedFileTypes = ["xml"] 5 if sp.runModal() == NSApplication.ModalResponse.OK { 6 if sp.url != nil { 7 do { 8 9 try _XML.write(to: sp.url!, atomically: false, encoding: String.Encoding.utf8) 10 } catch { 11 print("(error.localizedDescription)") 12 let panel = NSAlert() 13 panel.messageText = error.localizedDescription 14 panel.runModal() 15 return 16 } 17 18 } 19 } 20
[NSSavePanel observeValueForKeyPath:ofObject:change:context:] caught non-fatal NSInternalInconsistencyException 'unexpected class type for sandbox extension string!' with backtrace ( 0 CoreFoundation 0x00007fff35f868ab __exceptionPreprocess + 250 1 libobjc.A.dylib 0x00007fff6c240805 objc_exception_throw + 48 2 CoreFoundation 0x00007fff35fafd10 +[NSException raise:format:arguments:] + 88 3 Foundation 0x00007fff386a8241 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 191 4 AppKit 0x00007fff33ac27b2 __53-[NSSavePanel _attachSandboxExtensions:toURL:orURLs:]_block_invoke + 240 5 CoreFoundation 0x00007fff35efe037 __NSARRAY_IS_CALLING_OUT_TO_A_BLOCK__ + 7 6 CoreFoundation 0x00007fff35f14c36 -[__NSSingleObjectArrayI enumerateObjectsWithOptions:usingBlock:] + 80 7 AppKit 0x00
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。