Swift - 如何从语音中保存文本文件
Posted
技术标签:
【中文标题】Swift - 如何从语音中保存文本文件【英文标题】:Swift - How to save a text file from speech 【发布时间】:2019-12-18 12:59:56 【问题描述】:我正在开发 ios 中的 Speech to Text 应用程序。
实际上我已经做到了,但我的实际问题是当语音转换为文本时,如何将文本文件保存在指定位置的 txt 中?
【问题讨论】:
您好!这回答了你的问题了吗? ***.com/questions/47329826/… 您的问题实际上是关于如何保存文本文件。所以这可能会有所帮助:***.com/questions/24097826/… 这能回答你的问题吗? Read and write a String from text file 【参考方案1】:guard let path = try? FileManager.default.url(for: .documentDirectory,
in: .userDomainMask,
appropriateFor: nil,
create: false)
.appendingPathComponent("Folder/File.txt") else
return
try? "Text".write(to: path, atomically: false, encoding: .utf8)
【讨论】:
以上是关于Swift - 如何从语音中保存文本文件的主要内容,如果未能解决你的问题,请参考以下文章
我正在从 swift playground 保存一个文本文件。但无法在我的 Mac 中找到该文件