0
저는 현재 Swift (취미 일뿐입니다)를 연구 중이며 문서 기반의 신속한 응용 프로그램에서 document.swift 파일에 함수를 저장하고로드하는 방법을 파악하려고합니다. 간단한 txt 파일을 저장하고로드하는 방법을 알고 싶습니다. NSTextView를 사용하고 있으므로 NSString으로 변경해야합니다. 여기 문서 기반 Swift 3 앱에 간단한 저장로드 기능을 추가하는 방법은 무엇입니까?
순간에 이러한 기능은 다음과 같습니다override func data(ofType typeName: String) throws -> Data {
// Insert code here to write your document to data of the specified type. If outError != nil, ensure that you create and set an appropriate error when returning nil.
// You can also choose to override fileWrapperOfType:error:, writeToURL:ofType:error:, or writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
throw NSError(domain: NSOSStatusErrorDomain, code: unimpErr, userInfo: nil)
}
override func read(from data: Data, ofType typeName: String) throws {
// Insert code here to read your document from the given data of the specified type. If outError != nil, ensure that you create and set an appropriate error when returning false.
// You can also choose to override readFromFileWrapper:ofType:error: or readFromURL:ofType:error: instead.
// If you override either of these, you should also override -isEntireFileLoaded to return false if the contents are lazily loaded.
throw NSError(domain: NSOSStatusErrorDomain, code: unimpErr, userInfo: nil)
}
감사합니다. 나는 그것에 문제가 있는지보고하고보고한다. – paha