通过 iTunes(或其他?)访问 iOS 应用程序中的 .plist 文件

Access a .plist file in an iOS app through iTunes (or other ?)

我正在编写一个小应用程序来管理客人名单。为了储存这个列表,我使用了一个 .plist 文件(它是一个数组 -> .plist 是实用的。)我想用我的电脑编辑这个文件的可能性(我必须用 1000 人或更多来填充它.. .) 有没有一个解决方案可以使用 Mac 访问文件(我想是使用 iTunes)? (如定格动画:您可以拍摄在 iTunes 中制作的视频)。

谢谢!

根据apple doc

File-Sharing Support
File-sharing support lets apps make user data files available in iTunes 9.1 and later. An app that declares its support for file sharing makes the contents of its /Documents directory available to the user. The user can then move files in and out of this directory as needed from iTunes. This feature does not allow your app to share files with other apps on the same device; that behavior requires the pasteboard or a document interaction controller object.

To enable file sharing for your app, do the following:

  1. Add the UIFileSharingEnabled key to your app’s Info.plist file, and set the value of the key to YES. (The actual key name is "Application supports iTunes file sharing")

  2. Put whatever files you want to share in your app’s Documents directory.

  3. When the device is plugged into the user’s computer, iTunes displays a File Sharing section in the Apps tab of the selected device.

  4. The user can add files to this directory or move files to the desktop.

Apps that support file sharing should be able to recognize when files have been added to the Documents directory and respond appropriately. For example, your app might make the contents of any new files available from its interface. You should never present the user with the list of files in this directory and ask them to decide what to do with those files.

For additional information about the UIFileSharingEnabled key, see Information Property List Key Reference.