Jsonify is a delightful JSON parsing framework for iOS/macOS/watchOS/tvOS platforms written in Swift.
- iOS 8.0+
- macOS 10.10+
- watchOS 2.0+
- tvOS 9.0+
- Xcode 8 with Swift 3
pod 'Jsonify'First, excute this:
git submodule add https://github.com/Meniny/Jsonify.gitthen:
- Drag
Jsonify/Jsonify/Jsonify.xcodeprojinto your project - Go to
PROJECT->TARGETS->[YOUR_TARGET_NAME]->General->Embedded Binaries - Click
+ - Select
Jsonify.frameWork, clickAdd
Copy all files in the ./Jsonify/Jsonify directory into your project.
You are welcome to fork and submit pull requests.
Jsonify is open-sourced software, licensed under the MIT license.
let jsonString = "[ { \"id\": 1, \"name\": \"Meniny\", }, ]"
let array = Jsonify(string: jsonString)
for i in array.arrayValue {
let id = i["id"].intValue
let name = i["name"].stringValue
print("id=\(id)\nname=\(name)")
}