swift3.0 存取json数据到沙盒
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift3.0 存取json数据到沙盒相关的知识,希望对你有一定的参考价值。
do {
//将json保存到本地
let jsonData = try JSONSerialization.data(withJSONObject: dict, options: .prettyPrinted)
// here "jsonData" is the dictionary encoded in JSON data
let data = jsonData as NSData
data.write(toFile: filePath, atomically: true)
//构建文件路径
let filePath:String = NSHomeDirectory() + "/Documents/imagetovideo.json"
//读取json
var loaddata=NSData(contentsOfFile: filePath)
if loaddata != nil
{
let jData=loaddata as! Data
let decoded = try JSONSerialization.jsonObject(with: jData, options: [])
print("译码:",decoded)
}
} catch {
print(error.localizedDescription)
}
以上是关于swift3.0 存取json数据到沙盒的主要内容,如果未能解决你的问题,请参考以下文章
javascript - postMessage 到沙盒 iframe,为啥收件人窗口原点为空?