user2638817
user2638817

Reputation: 95

Examine the content of created plist

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

Answers (1)

Rob
Rob

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: enter image description here

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

Related Questions