iOS 是否可以并允许下载资源包并从中加载一些字符串?

发布于 2024-10-23 23:10:50 字数 109 浏览 2 评论 0原文

我知道 Apple 不允许您在 iOS 应用程序中从互联网下载任何代码。

我的问题是您是否可以下载包含一些字符串表的资源包并加载它们。

问题的第二部分是苹果是否允许这样做。

I know that Apple does not allow you to download any code from the internet in your iOS application.

My question is if you can download a resource bundle that contains some string tables and load them.

The second part of the question is if Apple allows this.

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

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

发布评论

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

评论(2

百善笑为先 2024-10-30 23:10:50

我使用 ASIHTTPRequest 从互联网下载内容。这既简单又快捷。从技术上讲,使用 iOS SDK 中包含的 CFNetwork API,并且从技术上讲,在应用程序中使用是“合法”的。

在他的网站上有一个 区域,其中的应用程序现在在 App Store 中使用ASIHTTP 请求。

就我个人而言,我在一个应用程序中使用了它,但我还没有将该应用程序发送到应用程序商店。

I use ASIHTTPRequest to download content from internet. It's easy and fast. Technically use CFNetwork API that include in iOS SDK and technically is "legal" to use in apps.

In his web there are a zone with apps are in App Store now using ASIHTTPRequest.

Personnally I use this in one app but I did not send the app to the App Store yet.

巴黎盛开的樱花 2024-10-30 23:10:50

您的应用程序可以下载该捆绑包。但运行时中没有任何东西能够使用它。您必须编写自己的方法来从中提取所需的字符串。那时你不能称其为捆绑包。

Your app can download the bundle. But nothing in the runtime would be able to use it. You would have to write your own methods to extract the strings you need from for it. At that point you couldn't call it a bundle.

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