I tried reading the other questions about similar cases, but no luck, so here’s a question. I have a setup of nested UIScrollView’s and while the scrolling all happens fine, I don’t seem to any of the delegate events.
Outer UIScrollView is paginated and scrolls vertically. Inside I have multiple "rows" of horizontally scrolling paginated UIScrollViews. Now, what I want, is to force the inner scrollers to a specific location when vertical scroll happened.
I made the ViewController a delegate and am calling the scrollViewDidScroll, but it only fires when I initially set up the scrollers and never if I actually touch the device and scroll the grid.
I’m listening both inner and outer scrollers and they both ignore firing any events when I scroll on the device.
I’m quite new to Obj-C and Cocoa dev, so I might be completely missing something obvious, but any help is appreciated.