Open tanmays opened 11 years ago
Is the demo project working fine for you?
Sent from my iPad
On 10 Nov, 2012, at 7:22 PM, tanmays notifications@github.com wrote:
Hello,
First of all, love you work, its been very useful for me so far.
So here's the issue I'm facing, I'm using the PaperFold-ContainmentView.
As soon as I set the paperFoldNavController to be my RootViewController, my gestures have stopped working.
The gesture specifically the Swipe gesture (Left swipe as well as Right swipe) just doesn't seem to get triggered on any of my subviews.
They don't work even after I've set setEnableRightFoldDragging:NO
Any help or suggestion?
Regards, Tanmay
— Reply to this email directly or view it on GitHub.
Yep the demo project works fine.
The thing is there are certain view wherein I dont want the foldViewControllers to get triggered. So according when those subviews are added I set the dragging to NO.
And in those subviews I have specified a swipe gesture to perform some specific action.
But those swipe gestures don't get triggered. I'm guessing this has something to do with Gesturerecognizer conflict between my custom gestures and gestures set by PaperFold.
By the way, that demo project doesn't use containment view. Wonder if this suits u more. https://github.com/honcheng/PaperFoldMenuController
Sent from my iPad
On 10 Nov, 2012, at 7:22 PM, tanmays notifications@github.com wrote:
Hello,
First of all, love you work, its been very useful for me so far.
So here's the issue I'm facing, I'm using the PaperFold-ContainmentView.
As soon as I set the paperFoldNavController to be my RootViewController, my gestures have stopped working.
The gesture specifically the Swipe gesture (Left swipe as well as Right swipe) just doesn't seem to get triggered on any of my subviews.
They don't work even after I've set setEnableRightFoldDragging:NO
Any help or suggestion?
Regards, Tanmay
— Reply to this email directly or view it on GitHub.
So you want swipe gestures on the cell to work, when you have paper fold swiping disabled? I haven't tested that actually, because I didn't need it in my own use.
You are probably right about the conflict.
Sent from my iPad
On 10 Nov, 2012, at 7:34 PM, tanmays notifications@github.com wrote:
Yep the demo project works fine.
The thing is there are certain view wherein I dont want the foldViewControllers to get triggered. So according when those subviews are added I set the dragging to NO.
And in those subviews I have specified a swipe gesture to perform some specific action.
But those swipe gestures don't get triggered. I'm guessing this has something to do with Gesturerecognizer conflict between my custom gestures and gestures set by PaperFold.
— Reply to this email directly or view it on GitHub.
Not on the cell. I haven't implemented any tableview. Its just that custom swipe gestures don't seem to work on any type of view, be it normal UIView or TableView.
Although other type of gestures work fine, for example I just tried using PanGestureRecognizer and it works just fine.
Its just the swipe gesture that doesn't seem to get triggered.
And yes you are right, I want my own custom swipe gesture on some of my SubViews when I have paper fold swiping disabled.
I think you might be able to fix this by removing any type of gestures/touch based event or any such method when user has setEnableRight/LeftFoldDragging:NO.
Hello,
First of all, love you work, its been very useful for me so far.
So here's the issue I'm facing, I'm using the PaperFold-ContainmentView.
As soon as I set the paperFoldNavController to be my RootViewController, my gestures have stopped working.
The gesture specifically the Swipe gesture (Left swipe as well as Right swipe) just doesn't seem to get triggered on any of my subviews.
They don't work even after I've set setEnableRightFoldDragging:NO
Any help or suggestion?
Regards, Tanmay