Start a Project

Use JSON with Swifty JSON library in Swift

Use JSON with Swifty JSON library in Swift

When we get from the  API in the JSON form it is difficult to to traverse the data in swift in the form of string ,integer or in array format. To traverse the data in JSON use the SwiftyJSON library (https://github.com/SwiftyJSON/SwiftyJSON).  If we don’t use the library we have to check every string in if – else statement to check that the value exists or not , And to traverse Array we use AnyObject but in the library no need of that. You have to just put SwiftyJson class and you can use the library by passing the Data type data to get the data in JSON format. Examples :-

 

 

Exit mobile version