var panGesture = UIPanGestureRecognizer(target: self, action: "pan:");
var swipeGestureLeft = UISwipeGestureRecognizer(target: self, action: "swipe:");
swipeGestureLeft.direction = UISwipeGestureRecognizerDirection.Left;
self.view.addGestureRecognizer(swipeGestureLeft);
self.view.addGestureRecognizer(panGesture);
When i run it only the pan gesture gets triggered. If don't add the pan gesture to the view then the swipe gesture works like it should.