Hi,
I need your advice. We have an already working web resource management application, we use the usal tools html, css, php, mysql, the users logs in, create a new issue and data is saved/retrieved in/from a sever, everything ok.
The thing is that they ask me to develop an iPhone app using objective-c to emulate the functionality. Now, I have some thoughts on this:
- One aproach is to just make the ajax optimizations so the website runs like any other iphone web app, honestly not convenient for me, they'll hire a web developer.
- The native app could request the web pages, parse html and maybe get the values to display them, lets say ... in a tableView
- The last one and wich I thing should be the most "simple" is to call the php scripts that will make requests to the database and get the data without tags.
I've diggen in the said php scripts and discovered that they have embeded html, so, does that mean there's no way to scape from parsing html?
Please give ideas to clear this problem, thanks in advance.