I am trying to load different sets of data into a single uitableview dependent on which cell was selected in the tableView:didSelectRowAtIndexPath: method of the previous view.
What i would like to do is set a value inside the newly pushed view that can change the requests that I do to a php script of my choosing.
For instance if I could pass my newly pushed view a number I would have an if statement or maybe a switch, that switch statement would then make use of my ASIFormDataRequest wrapper I am usnig telling my request nsobject to execute the php script I have related to this cell selection, then pass the data-back.
I hope this makes sense, if you have any experience with what I am trying to achive and can see a better way of doing it I would love to hear it.