Is it possible to get information from a url?
For example, it would be possible to get the headline and the image through the following url:
http://www.farodevigo.es/deportes/2011/08/24/lopez-garai-herrera-equivoca-prescindiendo/574038.html
Is it possible to get information from a url?
For example, it would be possible to get the headline and the image through the following url:
http://www.farodevigo.es/deportes/2011/08/24/lopez-garai-herrera-equivoca-prescindiendo/574038.html
Yes, that is possible but I wouldn't reccommend it.
In general, parsing HTML is hard - it's probably badly formatted and you would have a hassle trying to work out which bits you wanted and which bits you didn't.
You are better off using this URL : http://www.farodevigo.es/elementosInt/rss/1
and using NSXMLParser - because it's RSS it's definitely going to be well formed and easy for you to understand :)