I have a tableView populated by a plist.
Each item in the plist has its own id.
The plist is structured like this:
Root
>Item 0
Title (Title of the first section in the tableView)
Rows (Array -> Rows of the first section)
>Item 0
id
name
description
image
>Item 1
id
name
description
image
//etc
Due that an image talks better than 1000 words, here it is:
Now, I would like to access to the next item of the plist from the detailView, but I don’t know how to do or what the mechanism should be like.
I googled a lot to accomplish this but I didn’t find anything that could actually help me, that’s why I’m asking here.
I already have the plist opened in the detailView (opened from the tableView accessing the id), and I would like to create a button or something to go to the next item.
In example, if the detailView is the id of Item 0, I need to access the next id, which is Item 1 id.
Has anyone done this before?
Thank you very much in advance.

It’s so easy, load your plist in DetailView and do the rest.