Question

I have an RSS-feed that loads articles from some sites. I want the text in the articles to be shown in a TextView. It's not ads in the articles, so I am allowed to just get the text. Anyone knows how I can do it?

Sorry for my bad english.

Was it helpful?

Solution

You don't need to use a UIWebView to read from a URL.

Why not just open a connection to the URL and download the text? You can parse/filter/etc the raw data before putting it in your TextView.

See these other SO questions for examples of how to do this:

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top