如何制作应用程序的两个版本并让它们共享相同的设置?
我有一个带有捆绑包标识符 com.openfrog.appName
的付费版本,我相信不可能对两个应用程序使用相同的捆绑包标识符。
由于多种原因,我不想使用应用内购买,因此拥有两个单独的应用程序对我来说是一个很好的解决方案。一个付了钱。一份免费。
我该怎么做才能让付费版本继承免费版本的设置?我记得有一个技巧或规则你必须遵循才能在两个应用程序之间共享 NSUserDefaults。让两个应用程序共享相同设置的技巧是什么?
I've got a paid version with a bundle identifier com.openfrog.appName
and I believe it's not possible to use the same bundle identifier for two apps.
For a number of good reasons I don't want to use In-App Purchases so having two separate apps is a good solution for me. One paid. One free.
What must I do in order to let the paid version inherit the settings of the free version? I remember there was a trick or rule you had to follow in order to make sharing of NSUserDefaults beetween two apps possible. What's the trick to let both apps share the same settings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 NSUserDefaults 的 addSuiteNamed: 方法。
这仅适用于读取设置,不适用于写入。
请参阅参考 -
http://developer.apple.com/library/IOs/#documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults_Class/Reference/Reference.html
You can use addSuiteNamed: method of NSUserDefaults.
This will work only for reading settings, not for writing.
See ref -
http://developer.apple.com/library/IOs/#documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults_Class/Reference/Reference.html