将数据从免费应用程序导入到付费应用程序

发布于 2024-10-26 15:00:34 字数 228 浏览 1 评论 0原文

我开发了一个免费的应用程序,您可以在其中保存一些用户数据。现在我开发了一个付费版本,没有任何广告和其他一些新功能。我想转移免费应用程序版本的数据!我怎样才能以最好的方式实现这一目标?

编辑:您可以通过 NSKeyedArchiver 保存玩过的游戏的数据以及一些信息(游戏分数、玩家姓名、日期等)。您可以在表格视图中查看所有保存的数据。我也想在付费版本中看到这些存储的数据,但如何共享这些数据?给出的答案似乎不是最直接的方法!

I developed a free application where you can save some user data. Now I developed a paid version without any ads and some other new features. I would like to have the data from the free app version transferred! How can I achieve this the best way?

Edit: you can save data of a played game with some infos (gamescore, playername, date etc) via NSKeyedArchiver. You can see all your saved data in a table view. I would like to see these stored data in the paid version as well, but how can I share the data? The given answers don't seem to be the straightest way!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我很OK 2024-11-02 15:00:34

我以前从未这样做过,但我能想到的方法是首先获取文件的位置(如果是核心数据,则位于您的文档文件夹中),然后根据您的需要导入数据可以:

  1. 将文件附加到电子邮件并让用户亲自发送电子邮件,然后使用您的应用程序打开文件

  2. 将文件发送到服务器,然后用户可以访问和下载文件

一个很好的起点是 Apple 的文档NSFileManager 和这个 教程这另一个处理共享文件和自定义扩展的准备工作。

I've never done this before but the way I can think of on how to do this is by first getting the location of your file (if it is Core Data, it is in your Documents folder) and then depending on how you want to import data either:

  1. Attach the file to an email and have the user email himself and then open the file with your app

  2. Send the file to a server, which then the user can access and download the file

A good starting point is Apple's documentation on NSFileManager and this tutorial. This other one deals with preparing for sharing files and custom extensions.

在梵高的星空下 2024-11-02 15:00:34

修改两个应用程序以注册和处理自定义 URL。让付费应用程序尝试发送请求 URL 以启动免费应用程序。如果免费应用程序处理该 URL,它可以使用付费应用程序的 URL 发回数据。

Modify both apps to register for and handle custom URLs. Have the paid app try to send a request URL to launch the free app. If the free app handles the URL it can send data back using the paid app's URL.

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