Skip to main content

Posts

Showing posts with the label Array Type JSON Parsing & JSON Serialization

app-ads.txt

 google.com, pub-2203413632152319, DIRECT, f08c47fec0942fa0

Array Type JSON Parsing & JSON Serialization

     func   callApi (){         let sessionConfig = URLSessionConfiguration . default         let sessionUrl = URLSession ( configuration : sessionConfig)         let url = URL ( string : "URL" )!         let request: URLRequest = URLRequest ( url :url)         let task = sessionUrl. dataTask ( with : request){             (data, response, error) in             if error != nil {                 print (error!. localizedDescription )             } else {                 do {                     if let json = try ! JSONSerialization . jsonObject ( with : data!, options : . allowFragments ) as ? [ Any ] {            ...