I've been tasked with updating an app we have that I didn't write. It contains a scrollview that scrolls horizontally and only contains UIButtons. The buttons not only have an action to open the app they represent, but they can be dragged if tapped and held. There is another scrollview below the scrollview in question that accepts the dragging of the buttons.
Everything has and is working as expected pre iOS 7. On an iOS 7 device, the button taps are being registered as soon as the scrollview is touched. The button will show a lit state like it was selected and the scrollview will begin scrolling. On a pre iOS 7 device, the scrollview will begin to scroll instead of registering the tap.
Anyone experience any issues with UIScrollView with iOS7? setDelaysContentTouches: is set to YES, which should prevent this from happening. I'm at a loss.