是否可以允许其他应用程序从我们的应用程序检索数据?

发布于 2024-12-11 18:21:29 字数 97 浏览 0 评论 0原文

是否可以允许其他应用程序从我们的应用程序检索(例如对 SQL Lite 的只读访问)数据?

我们如何提供某种检索数据的方法?请分享您的想法。

谢谢。

Is it possible to allow other applications to retrieve(e.g readonly access to SQL Lite) data from our application ?

How can we provide some way of retrieving data? Please share your thoughts.

Thanks.

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

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

发布评论

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

评论(2

浮生面具三千个 2024-12-18 18:21:29

不可以,iOS 中的应用程序是沙盒的,任何访问应用程序沙盒之外区域的尝试都将导致审核期间被拒绝。

还有其他选择,例如通过 Web 服务共享数据,或使用自定义 URL 方案。

一个例子是 tel:// 方案,它允许应用程序将电话号码传递给电话应用程序,并在用户同意的情况下让它拨打电话。

您可以让您的应用程序处理特定方案,其他应用程序可以实现该方案以与您的应用程序共享数据 - 反之亦然。

No, applications in iOS are sandboxed and any attempts to access areas outside the application sandbox will result in rejection during review.

There are alternatives, for instance sharing data via a web service, or using custom URL schemes.

An example of this is the tel:// scheme that allows an app to pass a phone number to the Phone app and have it call if the user agrees.

You could make your app handle a particular scheme and other apps can implement that to share data with your app - vice versa will also work.

饭团 2024-12-18 18:21:29

网络服务怎么样? (XML-RPC 或其他任何东西...)

http://de.wikipedia.org/wiki/Webservice< /a>

What about webservices? (XML-RPC or anything else...)

http://de.wikipedia.org/wiki/Webservice

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