romaonthego / REFrostedViewController

iOS 7/8 style blurred view controller that appears on top of your view controller.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Disable bounce effect

tejas-ardeshna opened this issue · comments

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