Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. [_buttonCenterXConstraint setConstant:buttonCenterPoint.x];
  2. [_buttonCenterYConstraint setConstant:buttonCenterPoint.y];
  3.  
  4. [UIView animateWithDuration:0.25f
  5. animations:^{
  6.  
  7. [button layoutIfNeeded];
  8. }];
  9.  
  10. UISnapBehavior *bounceBehaviour = [[[UISnapBehavior alloc] initWithItem:button snapToPoint:buttonCenterPoint];
  11.  
  12. [bounceBehaviour setAction:^{
  13.  
  14. [_buttonCenterXConstraint setConstant:buttonCenterPoint.x];
  15. [_buttonCenterYConstraint setConstant:buttonCenterPoint.y];
  16. }];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement