I am working on an iOS project and my goal is to create a "pretty" app version of a specific website. To do this, I'm parsing all the data from said website with TFHpple for use in my app.
This website has a store, so my goal was to read the webpage with the products, then display them all in a table view and what not. However, the website doesn't display all the products on the specific page at once.
It splits up the products across 3 pages inside the one website page so you have to click the "next page" button on the website, and that runs some javascript code and adds the "?foo" part to make the URL in the browser be "http://www.domain.com/page?foo". I read up that this "?foo" is a query string, however I don't know how I would trigger this in my Objective-C code from the base "http://www.domain.com/page" page.
So simply, I can't grab all the items I would like to with TFHpple because some are not in the HTML until the correct query string is used.
I'm not really sure if I am explaining my predicament very clearly, but if anyone has any info that I could use I would appreciate it immensely!