We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { if segue.identifier == SEGUES.SegueLobbyToProfile { if let child = segue.destinationViewController.contentViewController as? ProfileViewController{ self.animator = ZFModalTransitionAnimator(modalViewController: child) self.animator!.bounces = true self.animator!.transitionDuration = CGFloat(0.8) self.animator!.direction = .Right self.animator!.setContentScrollView(child.scrollView) self.animator!.dragable = true child.modalPresentationStyle = .Custom child.transitioningDelegate = self.animator } } }
Is this the correct way to attach the animator to the segue? My segue is "present modally" , with everything on default.
When the animator appears, it comes from Bottom (instead of Right), and the screen is completely white. I can drag the animator down to close it.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
swift version https://github.com/dimohamdy/ZFDragableModalTransitionSwift
No branches or pull requests
Is this the correct way to attach the animator to the segue? My segue is "present modally" , with everything on default.
When the animator appears, it comes from Bottom (instead of Right), and the screen is completely white. I can drag the animator down to close it.
The text was updated successfully, but these errors were encountered: