- Notifications
You must be signed in to change notification settings - Fork3.4k
The better way to deal with JSON data in Swift.
License
SwiftyJSON/SwiftyJSON
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
SwiftyJSON makes it easy to deal with JSON data in Swift.
- Why is the typical JSON handling in Swift NOT good
- Requirements
- Integration
- Usage
- Work with Alamofire
- Work with Moya
- SwiftyJSON Model Generator
Swift is very strict about types. But although explicit typing is good for saving us from mistakes, it becomes painful when dealing with JSON and other areas that are, by nature, implicit about types.
Take the Twitter API for example. Say we want to retrieve a user's "name" value of some tweet in Swift (according toTwitter's API).
The code would look like this:
iflet statusesArray=try?JSONSerialization.jsonObject(with: data, options:.allowFragments)as?[[String:Any]],let user=statusesArray[0]["user"]as?[String:Any],let username=user["name"]as?String{ // Finally we got the username}
It's not good.
Even if we use optional chaining, it would be messy:
iflet JSONObject=tryJSONSerialization.jsonObject(with: data, options:.allowFragments)as?[[String:Any]],let username=(JSONObject[0]["user"]as?[String:Any])?["name"]as?String{ // There's our username}
An unreadable mess--for something that should really be simple!
With SwiftyJSON all you have to do is:
letjson=try?JSON(data: dataFromNetworking)iflet userName=json[0]["user"]["name"].string{ //Now you got your value}
And don't worry about the Optional Wrapping thing. It's done for you automatically.
letjson=try?JSON(data: dataFromNetworking)letresult=json[999999]["wrong_key"]["wrong_name"]iflet userName= result.string{ //Calm down, take it easy, the ".string" property still produces the correct Optional String type with safety}else{ //Print the errorprint(result.error)}
- iOS 8.0+ | macOS 10.10+ | tvOS 9.0+ | watchOS 2.0+
- Xcode 8
You can useCocoaPods to installSwiftyJSON
by adding it to yourPodfile
:
platform:ios,'8.0'use_frameworks!target'MyApp'dopod'SwiftyJSON','~> 4.0'end
You can useCarthage to installSwiftyJSON
by adding it to yourCartfile
:
github "SwiftyJSON/SwiftyJSON" ~> 4.0
If you use Carthage to build your dependencies, make sure you have addedSwiftyJSON.framework
to the "Linked Frameworks and Libraries" section of your target, and have included them in your Carthage framework copying build phase.
You can useThe Swift Package Manager to installSwiftyJSON
by adding the proper description to yourPackage.swift
file:
// swift-tools-version:4.0import PackageDescriptionletpackage=Package( name:"YOUR_PROJECT_NAME", dependencies:[.package(url:"https://github.com/SwiftyJSON/SwiftyJSON.git", from:"4.0.0"),])
Then runswift build
whenever you get prepared.
To use this library in your project manually you may:
- for Projects, just drag SwiftyJSON.swift to the project tree
- for Workspaces, include the whole SwiftyJSON.xcodeproj
import SwiftyJSON
letjson=try?JSON(data: dataFromNetworking)
Or
letjson=JSON(jsonObject)
Or
iflet dataFromString= jsonString.data(using:.utf8, allowLossyConversion:false){letjson=JSON(data: dataFromString)}
// Getting a double from a JSON Arrayletname=json[0].double
// Getting an array of string from a JSON ArrayletarrayNames=json["users"].arrayValue.map{$0["name"].stringValue}
// Getting a string from a JSON Dictionaryletname=json["name"].stringValue
// Getting a string using a path to the elementletpath:[JSONSubscriptType]=[1,"list",2,"name"]letname=json[path].string// Just the sameletname=json[1]["list"][2]["name"].string// Alternativelyletname=json[1,"list",2,"name"].string
// With a hard wayletname=json[].string
// With a custom wayletkeys:[JSONSubscriptType]=[1,"list",2,"name"]letname=json[keys].string
// If json is .Dictionaryfor(key,subJson):(String,JSON)in json{ // Do something you want}
The first element is always a String, even if the JSON is an Array
// If json is .Array// The `index` is 0..<json.count's string valuefor(index,subJson):(String,JSON)in json{ // Do something you want}
SwiftyJSON 4.x introduces an enum type calledSwiftyJSONError
, which includesunsupportedType
,indexOutOfBounds
,elementTooDeep
,wrongType
,notExist
andinvalidJSON
, at the same time,ErrorDomain
are being replaced bySwiftyJSONError.errorDomain
.Note: Those old error types are deprecated in SwiftyJSON 4.x and will be removed in the future release.
Use a subscript to get/set a value in an Array or Dictionary
If the JSON is:
- an array, the app may crash with "index out-of-bounds."
- a dictionary, it will be assigned to
nil
without a reason. - not an array or a dictionary, the app may crash with an "unrecognised selector" exception.
This will never happen in SwiftyJSON.
letjson=JSON(["name","age"])iflet name=json[999].string{ // Do something you want}else{print(json[999].error!) // "Array[999] is out of bounds"}
letjson=JSON(["name":"Jack","age":25])iflet name=json["address"].string{ // Do something you want}else{print(json["address"].error!) // "Dictionary["address"] does not exist"}
letjson=JSON(12345)iflet age=json[0].string{ // Do something you want}else{print(json[0]) // "Array[0] failure, It is not an array"print(json[0].error!) // "Array[0] failure, It is not an array"}iflet name=json["name"].string{ // Do something you want}else{print(json["name"]) // "Dictionary[\"name"] failure, It is not an dictionary"print(json["name"].error!) // "Dictionary[\"name"] failure, It is not an dictionary"}
// NSNumberiflet id=json["user"]["favourites_count"].number{ // Do something you want}else{ // Print the errorprint(json["user"]["favourites_count"].error!)}
// Stringiflet id=json["user"]["name"].string{ // Do something you want}else{ // Print the errorprint(json["user"]["name"].error!)}
// Booliflet id=json["user"]["is_translator"].bool{ // Do something you want}else{ // Print the errorprint(json["user"]["is_translator"].error!)}
// Intiflet id=json["user"]["id"].int{ // Do something you want}else{ // Print the errorprint(json["user"]["id"].error!)}...
Non-optional getter is namedxxxValue
// If not a Number or nil, return 0letid:Int=json["id"].intValue
// If not a String or nil, return ""letname:String=json["name"].stringValue
// If not an Array or nil, return []letlist:Array<JSON>=json["list"].arrayValue
// If not a Dictionary or nil, return [:]letuser:Dictionary<String,JSON>=json["user"].dictionaryValue
json["name"]=JSON("new-name")json[0]=JSON(1)
json["id"].int=1234567890json["coordinate"].double=8766.766json["name"].string="Jack"json.arrayObject=[1,2,3,4]json.dictionaryObject=["name":"Jack","age":25]
letrawObject:Any= json.object
letrawValue:Any= json.rawValue
//convert the JSON to raw NSDatado{letrawData=try json.rawData() //Do something you want}catch{print("Error\(error)")}
//convert the JSON to a raw Stringiflet rawString= json.rawString(){ //Do something you want}else{print("json.rawString is nil")}
// shows you whether value specified in JSON or notifjson["name"].exists()
For more info about literal convertibles:Swift Literal Convertibles
// StringLiteralConvertibleletjson:JSON="I'm a json"
// IntegerLiteralConvertibleletjson:JSON=12345
// BooleanLiteralConvertibleletjson:JSON=true
// FloatLiteralConvertibleletjson:JSON=2.8765
// DictionaryLiteralConvertibleletjson:JSON=["I":"am","a":"json"]
// ArrayLiteralConvertibleletjson:JSON=["I","am","a","json"]
// With subscript in arrayvarjson:JSON=[1,2,3]json[0]=100json[1]=200json[2]=300json[999]=300 // Don't worry, nothing will happen
// With subscript in dictionaryvarjson:JSON=["name":"Jack","age":25]json["name"]="Mike"json["age"]="25" // It's OK to set Stringjson["address"]="L.A." // Add the "address": "L.A." in json
// Array & Dictionaryvarjson:JSON=["name":"Jack","age":25,"list":["a","b","c",["what":"this"]]]json["list"][3]["what"]="that"json["list",3,"what"]="that"letpath:[JSONSubscriptType]=["list",3,"what"]json[path]="that"
// With other JSON objectsletuser:JSON=["username":"Steve","password":"supersecurepassword"]letauth:JSON=["user": user.object, // use user.object instead of just user"apikey":"supersecretapitoken"]
It is possible to merge one JSON into another JSON. Merging a JSON into another JSON adds all non existing values to the original JSON which are only present in theother
JSON.
If both JSONs contain a value for the same key,mostly this value gets overwritten in the original JSON, but there are two cases where it provides some special treatment:
- In case of both values being a
JSON.Type.array
the values form the array found in theother
JSON getting appended to the original JSON's array value. - In case of both values being a
JSON.Type.dictionary
both JSON-values are getting merged the same way the encapsulating JSON is merged.
In a case where two fields in a JSON have different types, the value will get always overwritten.
There are two different fashions for merging:merge
modifies the original JSON, whereasmerged
works non-destructively on a copy.
letoriginal:JSON=["first_name":"John","age":20,"skills":["Coding","Reading"],"address":["street":"Front St","zip":"12345",]]letupdate:JSON=["last_name":"Doe","age":21,"skills":["Writing"],"address":["zip":"12342","city":"New York City"]]letupdated= original.merge(with: update)// [// "first_name": "John",// "last_name": "Doe",// "age": 21,// "skills": ["Coding", "Reading", "Writing"],// "address": [// "street": "Front St",// "zip": "12342",// "city": "New York City"// ]// ]
If you are storing dictionaries, you can remove elements usingdictionaryObject.removeValue(forKey:)
. This mutates the JSON object in place.
For example:
varobject=JSON(["one":["color":"blue"],"two":["city":"tokyo","country":"japan","foods":["breakfast":"tea","lunch":"sushi"]]])
Lets remove thecountry
key:
object["two"].dictionaryObject?.removeValue(forKey:"country")
If youprint(object)
, you'll see that thecountry
key no longer exists.
{"one" : {"color" :"blue" },"two" : {"city" :"tokyo","foods" : {"breakfast" :"tea","lunch" :"sushi" } }}
This also works for nested dictionaries:
object["two"]["foods"].dictionaryObject?.removeValue(forKey:"breakfast")
{"one" : {"color" :"blue" },"two" : {"city" :"tokyo","foods" : {"lunch" :"sushi" } }}
There are two options available:
- use the default Swift one
- use a custom one that will handle optionals well and represent
nil
as"null"
:
letdict=["1":2,"2":"two","3":nil]as[String:Any?]letjson=JSON(dict)letrepresentation= json.rawString(options:[.castNilToNSNull:true])// representation is "{\"1\":2,\"2\":\"two\",\"3\":null}", which represents {"1":2,"2":"two","3":null}
Work withAlamofire
SwiftyJSON nicely wraps the result of the Alamofire JSON response handler:
Alamofire.request(url, method:.get).validate().responseJSON{ responseinswitch response.result{case.success(let value):letjson=JSON(value)print("JSON:\(json)")case.failure(let error):print(error)}}
We also provide an extension of Alamofire for serializing NSData to SwiftyJSON's JSON.
Work withMoya
SwiftyJSON parse data to JSON:
letprovider=MoyaProvider<Backend>()provider.request(.showProducts){ resultinswitch result{caselet.success(moyaResponse):letdata= moyaResponse.dataletjson=JSON(data: data) // convert network data to jsonprint(json)caselet.failure(error):print("error:\(error)")}}
Tools to generate SwiftyJSON Models
About
The better way to deal with JSON data in Swift.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.