I have a view with a map and and list displayed at the same time. I would like the map to move when the user scrolls the list.
I was hoping for something like
(UITableView*)tableView didScrollTableViewCellToTop:(UITableViewCell *)cell
I haven’t found something that will support this yet.
Thanks in advance
Remember that the UITableView is simply a scroll-view. So you can get the offset of the scroll view and use the position to get the cell at that location:
To continuously monitor and change, implement a scroll-view-delegate and implement the scrollViewDidScroll method.