having an odd issue here. I want to scroll my table view to the bottom of row 0 in section 1. I am using this code:
tableView.scrollToRowAtIndexPath(NSIndexPath(forRow: 0, inSection: 1), atScrollPosition: .Bottom, animated: true)
It seems to work perfectly in the simulator for iOS versions 9.0 and above. However in my device (iOS 8.1) and on the simulator for 8.3 it does the complete opposite. It scrolls to the top of the cell and not the bottom! Seems very strange. Any ideas what I might be doing wrong here? Would really appreciate any pointers! thanks