如何制作应用程序的两个版本并让它们共享相同的设置?

发布于 2024-12-20 18:28:38 字数 247 浏览 0 评论 0原文

我有一个带有捆绑包标识符 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心头的小情儿 2024-12-27 18:28:38

您可以使用 NSUserDefaults 的 addSuiteNamed: 方法。

- (void)addSuiteNamed:(NSString *)suiteName  

这仅适用于读取设置,不适用于写入。

请参阅参考 -

http://developer.apple.com/library/IOs/#documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults_Class/Reference/Reference.html

“suiteName 域类似于捆绑包标识符字符串,但它是
不依赖于特定的应用程序或捆绑包。套房可用于
保存多个应用程序之间共享的首选项。”

You can use addSuiteNamed: method of NSUserDefaults.

- (void)addSuiteNamed:(NSString *)suiteName  

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

"The suiteName domain is similar to a bundle identifier string, but is
not tied to a particular application or bundle. A suite can be used to
hold preferences that are shared between multiple applications."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文