Another solution is to flip the table vertically and flip each cell vertically:
Apply the transform to a UITableView when initializing:
tableview.transform = CGAffineTransformMakeScale(1, -1);
and in cellForRowAtIndexPath:
cell.transform = CGAffineTransformMakeScale(1, -1);
This way you don't need workarounds for scrolling, but you will need to think a bit about contentInsets / contentOffsets and header / footer interactions.
Michael Wilson Feb 10 '15 at 15:16 2015-02-10 15:16
source share