Reputation: 95
In my program I store some data in a plist. The plists content changes during user activities. Is there any option to examine the content of such created file in xcode?
Upvotes: 0
Views: 126
Reputation: 438092
If you want to retrieve the plist from a device, you can use Xcode's "Organizer", choose "Devices" tab, and then you can download the data associated with a particular app there:
When you download the xcappdata
file, you can control-click on the file and choose "Show Package Contents" to navigate to the various folders in the app's sandbox.
Or if running the app on the simulator, you can navigate to "~/Library/Application Support/iPhone Simulator" and see the files there. If you don't see your "Library" folder, you can execute the following from the Terminal command line:
chflags nohidden ~/Library
Upvotes: 1