I don't know how to put it correctly so I will show in pictures.
I create first URLSession
, fetch data from JSON
, including links to data I want to use in the same Model.
first link:
From first request I got links to other info I want to use in the same table:
links from first link:
I'm trying to fetch data from both first and second link and put it together in one data model/table/cell.
I need to make another URLSession
, but I can't understood how put info together.
Is it possible to fire one URLSession
inside another? Any suggestions how to make it?