You can also use UIAttachmentBehaviorto achieve a similar effect, as UISnapBehaviorwith great speed control. For instance:
UIAttachmentBehavior *attachment = [[UIAttachmentBehavior alloc] initWithItem:viewToAnimate attachedToAnchor:viewToAnimate.center];
[self.animator addBehavior:attachment];
attachment.frequency = 20.0;
attachment.damping = 1.0;
attachment.anchorPoint = newPoint;
frequency 1.0 . frequency 0.0 1.0, ( resistance , 1.0 UIDynamicItemBehavior).
, frequency, :
UIDynamicItemBehavior *resistance = [[UIDynamicItemBehavior alloc] initWithItems:@[viewToAnimate]];
resistance.resistance = 100.0;
[self.animator addBehavior:resistance];