I'm editing an iOS app written in objective-c, I have a file called Account.plist and I want to insert values at certain points to update the values the user sees, ideally it would clear all the values and then insert new ones. So far I've had no luck modifying.
<dict>
<key>DefaultValue</key>
<string>01234567891</string>
<key>Key</key>
<string>telephone_number</string>
<key>Title</key>
<string>Telephone Number</string>
<key>Titles</key>
<array>
<string>01234567891</string>
<string>01234567892</string>
<string>01234567893</string>
</array>
<key>Type</key>
<string>PSMultiValueSpecifier</string>
<key>Values</key>
<array>
<string>01234567891</string>
<string>01234567892</string>
<string>01234567893</string>
</array>
</dict>
Any help appreciated.