Can anyone tell me how do I extract and alloc individual values in my plist array of dictionaries to some NSString?
For example, I key in names and their emails:
How do I display Alex Smith's email in a text label in some field?
For example, I key in names and their emails:
Code:
<array>
<dict>
<key>Name</key>
<string>John Doe</string>
<key>Email</key>
<string>jdoe@gmail.com</string>
</dict>
<dict>
<key>Name</key>
<string>Alex Smith</string>
<key>Email</key>
<string>asmith@gmail.com</string>
</dict>
</array>
How do I display Alex Smith's email in a text label in some field?