Im currently using a UITableView like any other, and I am researching into the ability to perform a swipe gesture on the screen, which will then shift the contents of the visible table over to display new content
for example: swiping right-to-left on the screen would change (via animation) the contents within each of the cells on screen to show new data.
What I can do is detect a swipe on the cells, or perhaps on the UITableViewController, but what I dont know how to do two fold:
1) Change data in all cells (could you have a set of hidden views within a custom table cell that animate in and out of each cell per swipe?)
2) How can you do this to all cells?
Thanks a lot Mark