All Questions
4 questions
0
votes
1
answer
115
views
How to display RSS entry from table view cell in a web view
I am using iOS 5 & Storyboard.I am able to display the RSS feeds from "http://feeds.reuters.com/reuters/INcricketNews" in a tableView.However i am not able to display an entry from a particular ...
0
votes
1
answer
318
views
feed://... in my UIWebView
I want to open RSS Feed in my UIWebView, but it isn't working and opening Safari.
My code:
NSString *link = [[NSString alloc] initWithFormat:@"feed://smartfiction.disqus.com/%@/latest.rss", slug];
...
1
vote
1
answer
2k
views
UIWebView loadHTMLString format
I'm new to the whole "iPhone Dev" world, and I am creating a simple app which has a feature to see the latest entries from a number of different Wordpress blogs.
I am able to grab encoded content ( ...
1
vote
3
answers
3k
views
iPhone: How to Display Text from UIWebView HTML Document in a UITextView
I have an RSS feed that gets arranged in a UITableView which lets the user select a story that loads in a UIWebView. However, I'd like to stop using the UIWebView and just use a UITextView or UILabel. ...