I have a UIScrollView
with 10 buttons, each button has its own method. My goal is to activate each button when the user scrolls and the UIButton
is "entering" a specific area. What's a good way to accomplish that? (I don't want the UIButton
to be pushed. Just hovering on it should activate it)
Example:
button 1
button 2
ooooooo
button 3 <--activated
ooooooo
button 4
Right now button 3 is activated. If the user will scroll down a bit button 2 will be activated.