-
Notifications
You must be signed in to change notification settings - Fork 46
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
Selectable Custom TransitionStyle for in and out #29
Comments
Transitions style are symmetric. But if you really need a different style for out animation, you can change the [self.navigationController presentPopinController:popin animated:YES completion:^{
//Code to run on completion
//Change transition style
[popin setPopinTransitionStyle:BKTPopinTransitionStyleSlide];
}]; |
Thanks for help.But this not worked me when I'm clicked fastly.if i wait 2-3 second is working.Can i lock transition ,completion block is working..
what is wrong. |
Your code looks correct. But I think what you mean. When you click before the animation is over, the dismiss is not working as expected. And the snap transition is the longest, so it is really obvious with this one. |
Can i select my TransitionStyle for in and out animation.
Or define in the BKTPopinTransitionStyleCustom block
for example:
The text was updated successfully, but these errors were encountered: