[Solved] I am trying to access room_type_info from json data but unable to do in swift [closed]


I recommend you using Alamofire (a powerful networking framework) and SwiftyJSON (for parsing JSON), they are very popular for iOS development.

With SwiftyJSON, you do not need to handle the error or worry about nested JSON, just do something like:

json["data"]["room_type_infor"].stringValue.

solved I am trying to access room_type_info from json data but unable to do in swift [closed]