-
Hi;
I added
```
UIPanGestureRecognizer* panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:menuViewController action:@selector(panItem:)];
[panGesture setMaximumNumberOfTouches:2];…
-
The controller should prevent panning to uncover an under controller that has not been assigned.
-
I had a three-finger-gesture with Global stage and an one-finger-gesture with a button or a sprite, but ,when I put one finger on the button and other two fingers outside the button , the three-finger…
-
I found if I have a navigation controller which has a wizard like a few steps, user swipe to navigation bar and reveal the side menu can be confusing. If there anyway to disable that, and make user ca…
txie updated
12 years ago
-
var panA2D:PanGesture = new PanGesture(stage);
panA2D.addEventListener(PanGestureEvent.GESTURE_PAN, onPanSequence);
panA2D.minNumTouchesRequired = 2;
panA2D.maxNumTouchesRequired = 2;
the listener fi…
mrbbp updated
12 years ago
-
Hello,
I am trying to add a UISlider to the view of the DataViewController. But the touch events are passed to the view and not to the slider due to which I am unable to move the slider. Please advis…