I'm trying to build a personal app for fun using the grace note API for movies playing in theaters near me (JSON format). I'm able to make a call to the server and display what movies are showing. However, I'm trying to display the showtimes, which are embedded deeper in the JSON. I'll try to explain best I can, but the JSON response is:
Theres a root array of x dictionaries (however many movies are in the theater)
Inside each dictionary is a key 'title' which I'm getting and displaying in the table (working correctly).
What I'm getting stuck on is that inside each root dictionary, theres ANOTHER dictionary named 'showtimes'. Inside this dictionary theres x amount of dictionaries (however many times the movie plays in the theater). Inside each of these dictionaries theres a key 'dateTime' which is the actual showtime which I want to get and store into an array for each movie. The idea is to display something like '12:30, 2:45, 5:00,7:30' in the tableview cells detail text label.
Thank you in advance!