如何获取 iTunes 应用描述?
如何从我的 iPhone 应用程序中获取 iTunes Store 应用程序描述?我需要它在我的应用程序中制作“帮助”屏幕。
我不知道这是否可行,但我知道有特殊链接可以让用户查看应用程序的评论,所以也许也可以获取应用程序描述?
How do I obtain the iTunes Store app description from within my iPhone app? I need it to make a "help" screen in my app.
I don't know if this is possible, but I know there are special link to make the user go to reviews of apps and so maybe it's also possibile to get the app description?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用 iTunes 搜索 API:
http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html
You should be able to use the iTunes search APIs:
http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html
或者您可以从远程站点加载描述并将其存储在本地。这样您就可以更新信息而无需更新整个应用程序。您可以加载 HTML 文件,将其存储到 Documents 目录并使用 UIWebView 在您的应用程序中显示它。
Or you can load the description from a remote site and store it localy. This way you are able to update the information without updating the whole app. You could load an HTML file, store it to the Documents directory and show it within your app with a UIWebView.