iphone xml 解析文本但没有图像或段落间距

发布于 2024-09-08 22:50:28 字数 488 浏览 6 评论 0原文

我正在尝试解析此处找到的 xml 博客: http://www.feed43.com/1515171705611023.xml

文本中有图片。我能够解析各个帖子的标题、内容和链接。

但是,我无法让它解析文本或图像中的段落间距链接。这三者都极其重要。

我正在使用这个: http://github.com/mwaterfall/MWFeedParser 几乎没有任何变化。大多数都与外观和加载的实际提要以及使用滚动视图作为详细视图而不是显示的表格视图有关。

注意:在我进行更改之前它也没有加载这些东西。

谁能帮助我吗?

i am trying to parse an xml blog found here: http://www.feed43.com/1515171705611023.xml

it has pictures within the text. I am able to parse the headers, the content and the link of the individual posts.

I, however, cannot get it to parse the paragraph spacing links within the text or images. all three of these are EXTREMELY important.

I am using this: http://github.com/mwaterfall/MWFeedParser with very few changes. most them having to do with appearances and the actual feed loaded as well as using a scroll view for the detail view instead of the table view shown.

note: it didnt load these things before I made changes either.

Can anyone help me?

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

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

发布评论

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

评论(1

┼── 2024-09-15 22:50:28

您正在寻找的是 html 渲染器,而不是 xml 解析器。在iPhone上,那就是WebKit,可以通过UIWebView来使用。

提取嵌入在 rss 格式的 xml 中的 html,并使用 loadHTMLString 将其放置在 UIWebView 中。通常,baseURL 将与 rss 源相同,但不带文件名。

What you are looking for is an html renderer, not an xml parser. On iPhone, that is WebKit, which can be used through UIWebView.

Extract the html embedded in the rss formatted xml and place it in a UIWebView using loadHTMLString. Usually, the baseURL will be the same as the rss source, without the filename.

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