Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Title more or less says it all.

I'd like to check the contents of an XML file at a specific point of execution while debugging in XCode. Is it possible to view the contents of the file, either through the Organizer (I'm debugging using actual hardware devices, not the simulator), or by typing in some sort of command into the output/console?

I am using XCode 4.

share|improve this question

4 Answers

up vote 33 down vote accepted

Simply open the organiser and click the 'Download' button at the bottom, then right click on the xcappdata file and select Show Package Contents.

share|improve this answer
4  
Thanks for this. Just to clarify the process a little - open the XCode organizer with your device connected, select the Devices tab, open up the little drop down button under your device, select Applications, choose the App that you want to inspect the sandbox for, and THEN you get the Download button. – Ben Clayton Feb 13 '12 at 11:30
Thank a lot Ben for the clarification, it that was an answer I would have voted for it. – jake_hetfield Jul 27 '12 at 12:33
3  
For me, this method seems to ignore the Documents directory, which is what I need. – Bleyddyn Aug 1 '12 at 20:36

I have just discovered that you can in fact save the entire contents of the sandbox to disk at any time. Simply open the organiser and click the 'Download' button at the bottom. This saves the sandbox to disk as a .xcappdata file. I'm not sure how to open this as it is, but I have found that if you change the file extension to .xml, you can browse it using finder just like a normal directory.

It's a shame you can't download single files if required and that the whole process is a little cumbersome, but it does allow me to achieve what I wanted in the end.

share|improve this answer
3  
The .xcappdata download isn't a file -- it's the whole sandbox directory (at least the data part)! Just look inside -- Terminal is a good way to do this, analogous to looking inside a .app at its constituents. It isn't necessary to change the extension, though if you eliminate the extension altogether you might help Finder with it's confusion over the "type" of the "file". The directory even contains an AppDataInfo.plist file that is a binary-format plist that shows you what is there. – Scott Marks Sep 26 '11 at 23:51
1  
The AppDataInfo.plist file is actually an excerpt from the app's Info.plist. – Scott Marks Sep 27 '11 at 0:10
1  
To view it's contents in Finder, right click and select 'Show Package Contents' – Dean Jan 11 at 17:51

You could enable file sharing (set the UIFileSharingEnabled flag in info.plist) and store the file where it can be accessed via iTunes (i.e. in the Documents folder).

share|improve this answer
A useful tip, thanks! However it does seem like a very roundabout way of achieving something that should hopefully be a bit more straight forward. – Will Pragnell Sep 14 '11 at 7:51
Yes, but it would seem this is the only way to look at the file - or do what Lio suggests. Perhaps on a jailbroken device you could ssh into the device as root and look at any files. – SVD Sep 14 '11 at 17:09
See also here: stackoverflow.com/a/8103572/1431728 – JohnK May 6 at 17:31

You can always set a breakpoint and then, in the console, print the contents of the object you want to examine using 'po'. Example: gdb> po [NSDictionary dictionaryWithContentsOfFile: filePath];.

share|improve this answer
While this is very useful, I'm afraid it's not quite what I'm after. I realise that in most cases I can simply use this to view the contents of an object just before writing to disk (or just after reading), but I was wondering if there's a quick and easy way to simply examine actual files. – Will Pragnell Sep 14 '11 at 7:50
If you are on the simulator, you can NSLog the path of the file, copy it from the console and open it in the terminal using 'open thePath' – Lio Sep 14 '11 at 11:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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