iDevelopper / PBRevealViewController

A UIViewController subclass for revealing a left and/or right view controller above or below a main view controller.
MIT License
80 stars 16 forks source link

Black stripe while animation runs #4

Closed schmidt9 closed 8 years ago

schmidt9 commented 8 years ago

See on screenshot (taken during animation) black line before main VC bounces back

simulator screen shot 30 2016 9 35 12_

iDevelopper commented 8 years ago

This is due to leftToggleSpringDampingRatio parameter. Set this property to 1.0. See Apple UIView reference:

animateWithDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:

schmidt9 commented 8 years ago

Thanks!