I am working on building a PLIST that will essentially be a directory. I would like to parse the plist so I may display the last names in a Table View, and when selected, populate the next view's labels with things such as addresses, phone numbers, and emails. I could use some guidance, here is what I have created so far:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<array>
<string>Last Name</string>
<string>First Name</string>
<string>Address</string>
<string>Phone Number</string>
<string>Email</string>
</array>
<array>
<string>Last Name</string>
<string>First Name</string>
<string>Address</string>
<string>Phone Number</string>
<string>Email</string>
</array>
<array>
<string>Last Name</string>
<string>First Name</string>
<string>Address</string>
<string>Phone Number</string>
<string>Email</string>
</array>
Is this plist setup well, or do I need to make changes. If setup well, I'm just a little lost on parsing. I have used GDATAXML in past with podcasts, but unsure how it would relate with the PLIST in-app.