I have a problem. I have a UISCrollView and I need obtain the event when the user touch the scrollView and send to other ScrollView o TableView these scrollMove.
How I can send the move capture in my ScrollView to other ScrollView or TableView for make these movement.
For simple touches I use touchesBegan, touchesMoved and touchesEnded, but the touchesMove don't work in UIScrollView and can't send these movement to other ScrollView or TableView.
I put a example. I need send the scroll event in secondView scrollView conflict area to the tableView for make scroll in tableView.
First View
-----------------------------
- - -
- - -
- T - -
- A - -
- B - -
- L - -
- E - -
- V - -
- I - -
- E - -
- W - -
- - -
- - -
-----------------------------
Second View --> ##### is the ScrollView area on tableView FirstView
-----------------------------
- -###### -
- -###### -
- -###### -
- -###### -
- -###### -
- -###### SCROLL -
- -###### VIEW -
- -###### -
- -###### -
- -###### -
- -###### -
- -###### -
- -###### -
-----------------------------
###### I need scroll on this area and send the moviment to back tableView.
Thank you for your help!