I have a .html file on a server, which I need to parse info from. It´s nothing huge it´s just
some text
<
Rather than encourage you to figure out how best to parse the HTML, may I suggest just leaving a static JSON file on your web server instead? There are many JSON parser libraries available for iOS that will allow you to get the data you need.
A side effect from doing this is that you will use less bandwidth in the download, it will be faster to parse, and the resulting code will be less brittle to changes in your data payload.