Please forgive the "noob"ness of my inquiry, but I'm hoping someone can help me wrap my head around this concept.
I have an iOS app (Swift) that is parsing JSON data from a remote server. It gets back some details of 3 servers in my organization. I have a UITableView set up the name and small bits of data in cells, and tapping on a cell will take me to another UITableView that shows more detail of the parsed data. It's working well.
I am attempting to migrate this idea to a WatchKit app, wherein I hope to have a table that will populate its labels based on a specific piece of that JSON data. Ideally, a user could tap on a cell of this table and get the detailed JSON data I parsed back in the iOS app.
Where I'm hitting a roadblock is trying to understand how WatchKit can pass the JSON data (I realize the need to use app containers and a User Default or File Coordinator), and allow the user to select the proper cell and receive the proper JSON data.
Without asking for a blatant answer, could someone provide some guidance or resource on who to perform this task? Or is selecting a cell via WatchKit not going to allow for an identifier that would populate the right JSON data?
Thank you in advance!