我有一個由plist填充的tableView。訪問由plist填充的tableView的下一個項目
plist中的每個項目都有自己的ID。
plist中的結構是這樣的:
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
由於該圖像的會談超過1000個字更好,那就是:
http://i49.tinypic.com/2ql5xtz.png
現在,我想訪問該從detailView的plist的下一個項目,但我不知道該怎麼做或機制應該是什麼樣子。 我搜索了很多東西來完成這個任務,但是我沒有找到任何可以幫助我的東西,這就是我在這裏問的原因。
我已經在detailView中打開了plist(從訪問id的tableView打開),我想創建一個按鈕或其他東西去下一個項目。
例如,如果detailView是Item 0的id,我需要訪問下一個id,它是Item 1 id。
有沒有人做過這個?
非常感謝您提前。
你能展示一些你用來訪問plist並顯示它的代碼嗎? –