在 iPhone 应用程序中显示来自 WordPress 网站的内容
我正在尝试在 iPhone 应用程序中显示来自 WordPress 网站的内容。我下载了 WordPress 应用程序的开源代码,但我很难找到我需要的代码。我想做的就是显示一些不同的文本我的 iPhone 应用程序中的页面(不可编辑或删除)。有谁知道是否有任何教程可以帮助我,或者您是否知道我正在寻找的代码在开源应用程序中的哪些文件中? 非常感谢任何和所有的帮助。
I am trying to display content from a wordpress site in an iphone app.I downloaded the open source code for the wordpress app and im having difficulty finding the code i need in it.All im trying to do is display the text of a few different pages(no editing or deleting) in my iphone app.Does anyone know if there are any tutorials that could help me or if you know which files the code im looking for is in, in the open source app?
Any and all help is much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前还不清楚你想做什么。
如果您只想显示 WordPress 站点的内容,最简单的解决方案就是简单地在
UIWebView
中显示该站点。下载应用程序的源代码可能不会为您做任何事情。 WordPress 网站的内容存储在数据库中,而不是源代码中。如果该网站有用于访问内容的 API,我会使用它。否则,您始终可以解析生成的 HTML 并提取内容。这是一种脆弱的方法,如果他们更改网站的布局,就会崩溃。
如果我误解了你的问题,我很抱歉,但你的问题不是很清楚。
It's not really clear what you're trying to do.
If you just want to display the content of the wordpress site the easiest solution would be to simply display the site in a
UIWebView
.Downloading the source code of the app will likely not do anything for you. The content of a wordpress site is stored in a database and not in the source code. If the site has an API for accessing the content I would use that. Otherwise you could always parse the generated HTML and extract the content. That's a fragile method that will break if they change the layout of the site.
If I misunderstood your question I apologize, but your question isn't very clear.