Is there any way to find out which UITableViewCell is at the top of the scroll window?
UITableViewCell
I\'d like to get the current scroll position so that I can save
You can easily grab the exact offset of the table view by looking at its contentOffset property. For the vertical scroll, look at:
contentOffset
tableView.contentOffset.y;