iphone xml 解析文本但没有图像或段落间距
我正在尝试解析此处找到的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的是 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.