vote up 0 vote down star

My iPhone app generates some very nice-looking plist files. I can look at them through xcode 's plist editor and through any plain text editor when I just want the xml. But can I do anything else with this data? I tried importing the xml into a spreadsheet in NeoOffice, but it just showed the plain text.

All I'm asking is this: Is there some sort of tool that I can use which will let me put the plist or xml data into a spreadsheet? Or, what else can I do with my plist files? What other programs are available?

flag

What do you want to do with the data? – Nick Veys Jul 31 at 1:26
Put it in a spreadsheet. – Evelyn Jul 31 at 12:22

2 Answers

vote up 0 vote down check

plist is just the default format when you save a NS data structure to disk. Because it is based xml, it is easy to use for machines, but not necessarily for humans or spreadsheets.

Normally, you would configure your app to format and output your data in CSV (comma separated values) format and that is easily importable into any spreadsheet program.

link|flag
vote up 0 vote down

You can edit them with Property List Editor which lives in /Developer/Applications/Utilities

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.