iOS 是否可以并允许下载资源包并从中加载一些字符串?
我知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 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.
您的应用程序可以下载该捆绑包。但运行时中没有任何东西能够使用它。您必须编写自己的方法来从中提取所需的字符串。那时你不能称其为捆绑包。
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.