ios打开文本文件
时间: 2023-08-02 19:12:39 浏览: 189
iOS 打开文档
5星 · 资源好评率100%
您可以使用以下代码在 iOS 应用程序中打开文本文件:
```swift
if let filepath = Bundle.main.path(forResource: "filename", ofType: "txt") {
do {
let contents = try String(contentsOfFile: filepath)
print(contents)
} catch {
print("Error: \(error.localizedDescription)")
}
} else {
print("File not found.")
}
```
请注意,您需要将“filename”替换为您的文件名,并将“txt”替换为文件扩展名。另外,如果您的文件不在应用程序的主要捆绑中,您需要使用正确的路径来访问它。
阅读全文