When saving something to disk with NSKeyedArchiver, where is that stored on the iPhone?
Posted
by mystify
on Stack Overflow
See other posts from Stack Overflow
or by mystify
Published on 2010-03-16T10:47:53Z
Indexed on
2010/03/16
10:56 UTC
Read the original article
Hit count: 351
iphone
|nskeyedarchiver
Example: If I used this, where does the iPhone store the file?
if (![NSKeyedArchiver archiveRootObject:your_object toFile:@"filename.plist"])
// save failed.
On my mac the filename.plist goes to Macintosh HD directly. No folder. Also, the NSKeyedArchiver doesn't seem to ask for a path, just for a file name. Strange or not?
And how's that file backed up with iTunes?
© Stack Overflow or respective owner