开发者

if rss feed has only one item how to go straight to its detail view without using a table

开发者 https://www.devze.com 2023-03-08 01:51 出处:网络
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 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 rs开发者_StackOverflow社区s 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.


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


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...


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...

0

精彩评论

暂无评论...
验证码 换一张
取 消