美文网首页
013-json类型资源文件转化成数组

013-json类型资源文件转化成数组

作者: 紫荆秋雪_文 | 来源:发表于2016-12-18 01:49 被阅读24次
    /// 路径
            guard let path = Bundle.main.path(forResource: "main.json", ofType: nil),
                let data = NSData(contentsOfFile: path),
                let array = try? JSONSerialization.jsonObject(with: data as Data, options: []) as? [[String: Any]]
            else {
                return
            }
    

    相关文章

      网友评论

          本文标题:013-json类型资源文件转化成数组

          本文链接:https://www.haomeiwen.com/subject/ghpamttx.html