swift 파일 읽기1 [iOS 앱 개발] Swift 파일 쓰기 & 읽기 Swift에서 파일을 쓰거나 읽을 때 문자열을 URL로 변경해야 합니다. import Foundation let filePath = "file:///workspace/Swift/Sources/data.json" let fileUrl = URL(string : filePath) 문자열을 파일로 쓸 때 Stirng의 메소드 write를 쓰면 간단하게 파일을 생성 할 수 있습니다. import Foundation let filePath = "file:///workspace/Swift/Sources/data.json" let fileUrl = URL(string : filePath) let text = "Hello World" try text.write(to: fileUrl!, atomically: true, .. 2022. 10. 12. 이전 1 다음