So what I am trying to achieve in my app is have a UITableView that when the user scrolls, snaps to the closest cell there is. So if I have 3 cells, and the user scrolls, if the user is closest to the top of the second cell, snap the UITableView there.
Hopefully I have conveyed the feature I am trying to achieve. I have done some basic research, and have found this method, scrollViewWillEndDragging:withVelocity:targetContentOffset:
, but I am not familiar with this method and how it works.
Any help?