如果 RSS feed 只有一项,如何在不使用表格的情况下直接进入其详细视图

发布于 2024-11-09 14:32:41 字数 196 浏览 0 评论 0原文

我有一个 RSS 提要,其中只有一项。我试图直接显示其详细信息,而无需通过表格视图来完成。

我的应用程序中有一个不同的 RSS 提要,其中包含多个项目。我使用表格视图进行此操作。我在网上查找,我所能找到的只是如何通过表格视图显示提要。

有谁知道如何在应用程序中显示提要中的单个项目? 或者任何在线教程?

非常感谢任何和所有的帮助。

I have an rss feed with only one item in it.I am trying to go straight to showing its details without having to go through a table view to do it.

I have a different rss feed working in my app that has multiple items. I have this working with a table view.I was looking online and all I could find was how to display a feed through a table view.

Does anyone know how to display the singular item from the feed in an app?
or of any online tutorials?

Any and all help much appreciated.

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

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

发布评论

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

评论(3

白衬杉格子梦 2024-11-16 14:32:41

只需解析提要并在表格视图中显示,在标签或文本视图中显示它。

Just parse the feed and insted of showing in tableview ,show it in a label or textview .

东风软 2024-11-16 14:32:41

我不明白你想通过你的问题问什么。听起来很简单,但您能否详细说明或提供 Rss feed 链接的 url 以了解您的查询...

I don't understand what u trying to ask through your question. It sounds simple but can you elaborate or give url of Rss feed links for understaning ur query...

雨后彩虹 2024-11-16 14:32:41

如果您已经解析了数据,则将其存储在一组变量中,对吗?

因此,如果您使用(UIWebView for DetailView)使用此数据或您希望在详细信息视图中发布的特定数据,现在您只想在详细信息视图中显示特定数据:-

– loadHTMLString:baseURL:

设置主页内容和基本 URL。

- (void)loadHTMLString:(NSString *)string baseURL:(NSURL *)baseURL

参数

string

主页面的内容。

baseURL

内容的基本 URL。

克...

If you've parsed your data already, you have it stored in a set of variables, right?

So now you just want a particular data to display in detail view for this if you use (UIWebView for DetailView) used this or a particular you wish to publish in the details view:-

– loadHTMLString:baseURL:

Sets the main page content and base URL.

- (void)loadHTMLString:(NSString *)string baseURL:(NSURL *)baseURL

Parameters

string

The content for the main page.

baseURL

The base URL for the content.

k...

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