iOS 开发,Mock 服务器接口

先把接口请求到的 JSON 落库,

        do{
            let json = try JSONSerialization.jsonObject(with: self, options: JSONSerialization.ReadingOptions())
            if let dict = json as? [String: Any]{
                let src = dict as NSDictionary
                let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
                let path = documentsURL.appendingPathComponent("one.plist")
                let result = src.write(to: path, atomically: true)
                print(result)
            }
        }
        catch let error{
            print("gg 了, \(error)")
        }

如果是直接跑模拟器,打印路径,直接就可以找到 plist .

直接跑真机,可以通过 Woodpecker, 同步文件到 Mac 上。

iOS 开发,Mock 服务器接口_第1张图片

你可能感兴趣的:(ios,swift)