-
Notifications
You must be signed in to change notification settings - Fork 397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnfoldRightView timer gets stuck and doesn't open die right view #59
Comments
I think I am experiencing the same problem. Sometimes (randomly during testing) it's stuck and until the app is restarted. I haven't been able to track it down, though. I'm going to check if your issue is the same one I have. Do you have a workaround already? |
I commented out the |
I had similar behavior and had to remove the assignment self.paperFoldInitialPanDirection = PaperFoldInitialPanDirectionVertical; in onContentViewPanned. This disabled all vertical panning but we don't have that functionality in our app anyways. |
I had a similar problem. The problem was that the timer was never being started, because i only added a right view. I had to change this line:
for this one:
|
I came across this bug too and found an easy workaround for this one: set the proper initialPanDirection BEFORE doing a setPaperFoldState. This way the timers properly walk through all the complex if-structures. for example:
|
When I toggle the right view with
[paperFold setPaperFoldState:PaperFoldStateRightUnfolded animated:YES];
the timer sometimes doesn't invalidate and calls the following method repeatedly blocking any unfolding animation
- (void)unfoldRightView:(NSTimer*)timer
The text was updated successfully, but these errors were encountered: