码迷,mamicode.com
首页 > 编程语言 > 详细

Swift读取Text文本文件

时间:2021-04-12 12:35:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:return   catch   文本   oftype   txt   bundle   cat   span   enc   

func getTextFileStr(filename:String!) -> String! {
        if let path = Bundle.main.path(forResource: filename, ofType: "txt") {
            do {
                let data = try String(contentsOfFile: path, encoding: .utf8)
                return data
            } catch {
                print(error)
            }
        }
        return ""
    }

方法有些简单,就是这么简单。

Swift读取Text文本文件

标签:return   catch   文本   oftype   txt   bundle   cat   span   enc   

原文地址:https://www.cnblogs.com/jiduoduo/p/14643426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!