how to access specific value from plist,
root |_Client1 |_report1 |_application1 |_application2
|_report2
|_application3
|_Client2开发者_StackOverflow中文版 |_report1
Like if application1,2 have string value, how can i get that value? Please help
Have a look at Apple's Property List Programming Guide. You can read the file with dictionaryWithContentsOfURL:
for example and access the items now with objectForKey:
and objectAtIndex
.
精彩评论