iOS-StyledPageControl
iOS-StyledPageControl copied to clipboard
Handling multiple UIGestureRecognizer
I used this control in one of my apps and I had the issue when more than one UIGestureRecognizer where added to a view with the same superview. I fixed by adding the StyledPageControl as a delegate for the UITapGestureRecognizer which simulated the event UIControlEventValueChanged. It is just easy as return YES when it conflicts with another UIGestureRecognizer.
Hope it helps. Miguel