I realize I can rotate the cells and move the indicator by displaying the scroll view \"upside down\" but that requires a lot of other rotations, and manipulating of informa
A quick way to achieve this (if you're not using row actions) without having to calculate insets or messing with additional table views, would be to transform the table view across the Y-axis (flip) and then transform the cells back when you get them.
tableView.transform = CGAffineTransformMakeScale(1, -1);
and then
cell.transform = CGAffineTransformMakeScale(1, -1);