I've this situation:
- one scrollView that fit all screen
- N "cells" inside scrollView, each of them contains a label
- each cell is 80px on height
- fixed green mask (UIView)
I programmatically create the cells (UIView) with label inside and correctly set contentSize of scrollView.
I know that
scrollView.setContentOffset(CGPoint(x: 0, y: 80.0), animated: true)
move scroll view by 80.
How can I "override" scroll view behaviour in order to always scroll by 80? What i want is sort of picker behaviour.. is this possible?