两种应用的一种偏好
我有两个带有 id-s 的应用程序:com.myCompany.mayApp 和 com.myCompany.mayAppPro。 如何将一个首选项文件 com.myCompany.mayApp.plist 用于这两个应用程序? 是否可以使用 NSUserDefaults 类来实现此目的?
I have two applications with id-s: com.myCompany.mayApp and com.myCompany.mayAppPro.
How can I use one pref file com.myCompany.mayApp.plist for two these applications?
Is it possible to use class NSUserDefaults for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 NSUserDefaults 中的以下方法:
它们允许您读取和写入具有给定域名的首选项文件。一个示例是读取 Apple iApp 的一些常见首选项:
前面的代码读取 iTunes 数据库文件的最近路径数组。
这些方法的缺点是它们读取和写入文件的全部内容。如果存储的项目数量不是很大,那么这通常不是问题。
Take a look at the following methods in NSUserDefaults:
They allow you read and write to a preferences file with a given domain name. An example is to read some common preferences for the Apple iApps:
The previous code reads the array of recent paths for the iTunes database files.
The disadvantage of these methods are that they read and write the entire contents of the file. If the number items being stored is not really large then this is not generally a problem.
我认为您必须使用 CFPreference API 来设置共享值,但是您可以读取使用 NSUserDefaults 的值,方法是将套件添加到共享 NSUserDefaults 的搜索路径实例。当然,您也可以使用 CFPreference API 读取这些值。
如果您的首选项很复杂并且您想使用 cocoa 绑定,您也可以编写自己的接口来包装键/值/域/主机/用户配置。
i think you'll have to use the CFPreference APIs to set shared values, but you can read the values using NSUserDefaults by adding the suite to the search path of the shared NSUserDefaults instance. of course, you may read the values using the CFPreference APIs too.
if your prefs are complex and you want to use cocoa bindings, you may as well write your own interface which wraps the keys/value/domain/host/user config.