I am implementing the application which consumes webservice (first authentication and then calling different webservices with provided token as a header field in URL)
After the authentication phase, I am showing the Home page to the user.
On Home page i am showing UITableView (with 9 cells on it.)
If those were the buttons I would write separate 9 – “onButtonClick” functions to call 9 different webservices, accordingly.
What can be best implementation (or flow), for implementing this structure.
Let me know if you want more details.
Thank you.
You could keep the URLs for the services in an array attached to the table view’s view controller (or delegate really) and then use the selected row as an index into the array and call the service.