是否可以允许其他应用程序从我们的应用程序检索数据?
是否可以允许其他应用程序从我们的应用程序检索(例如对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不可以,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.
网络服务怎么样? (XML-RPC 或其他任何东西...)
http://de.wikipedia.org/wiki/Webservice< /a>
What about webservices? (XML-RPC or anything else...)
http://de.wikipedia.org/wiki/Webservice