My app requires the ability to take a String
and save it to an NSDictionary
as an NSData
object, such that when the NSDictionary
is written to a .plist
file the resulting file contains the data as <data>The String as the user typed it (no encoding)</data>
. Is there anyway to do that without manually writing the XML for the .plist
file?
Thanks in advance for any help.