I am new to iphone, i am trying to parse a webpage. In that webpage we table of contents
headed with Country, code , location, population. And if we click on any country name then it
navigates to another page. My intension is to get the county name and country code from this
webpage and use in my app. Please help me in doing so. thank you
You can make a request to the page using any 3rd party libraries for that purpose (MKNetworkKit, for example) or just the basic
NSURLConnection. After that, you will receive the HTML on the response which can be parsed and used for whatever you want.