bharathlalgudinatarajan / LNBRippleEffect

Create a Tinder-like button with ripple animation.
MIT License
106 stars 24 forks source link

Button is off-centered when edges for extended layout equals UIRectEdgeNone #1

Open mafellows opened 9 years ago

mafellows commented 9 years ago

Button inside of ripple is centered perfectly until edges for extended layout is changed.

With the following code change, the ripples stay centered in the view. The button shifts downward and appears off-centered.

if ([self respondsToSelector:@selector(edgesForExtendedLayout:)]) {
   self.edgesForExtendedLayout = UIRectEdgeNone; 
}
bharathlalgudinatarajan commented 9 years ago

Thanks for pointing this out.