I\'m trying to create a sliding menu (kind of like in Facebook/Twitter apps) and my version successfully uses pan gestures for this effect. The class is called \"SlideMenu\"
I also had some issues with it, the source of my problem was that the
gestureRecogniser.cancelsTouchesInView
property is true
by default, which caused a weird delay effect on my UISlider when tried to drag it.
This solved
gestureRecogniser.cancelsTouchesInView = false
ps.: also make sure the delaysTouchesBegan, delaysTouchesEnded
are set to false