应用程序的设计区域
苹果指南说:
在指定容器区域之外读取或写入数据的应用程序将被拒绝
它们的设计容器区域是什么?
The Apple guidelines say:
Apps that read or write data outside its designated container area will be rejected
What is their designed container area?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上,这意味着您不应向除您自己的应用程序目录之外的任何其他目录写入或读取数据。
例如,您可以从您自己的应用程序更新另一个应用程序的 sqlite DB,除非有公共 API 允许这样做
Basically, it means that you should not write or read data to/from any other directory other than your own applcations directory.
e.g. you can update the sqlite DB of your another app from your own app unless there is a public API that allows that
每个应用程序都受其安装目录的约束。 Apple 限制您通过您的应用程序的目录访问另一个应用程序的内容。
Each Application is bound by its directory where it is installed. Apple restricts you from accessing the contents of another App through its directory from your App.