REFrostedViewController
REFrostedViewController copied to clipboard
Disable bounce effect
Is there any way to disable bounce effect in swift ?
Try with "frostedViewController.limitMenuViewSize = true"
limitMenuViewSize
property works to prevent the bouncing.
func panGestureRecognized(sender: UIPanGestureRecognizer) {
self.view.endEditing(true)
self.frostedViewController.view.endEditing(true)
self.frostedViewController.panGestureRecognized(sender)
self.frostedViewController.limitMenuViewSize = true }
This will disable the bounce effect in your menu view controller