Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implement UIKitDynamics for dragging view off screen

I'm trying to figure out implement UIKit Dynamics that are similar to those in Jelly's app (specifically swiping down to drag view off-screen).

See the animation: http://vimeo.com/83478484 (@1:17)

I understand how UIKit Dynamics work, but don't have a great physics background and therefore am having trouble combing the different behaviors to get the desired result!

like image 530
Matt Avatar asked Jan 24 '14 05:01

Matt


1 Answers

This sort of dragging can be accomplished with an UIAttachmentBehavior where you create the attachment behavior upon UIGestureRecognizerStateBegan, change the anchor upon UIGestureRecognizerStateChanged. This achieves the dragging with rotation as the user conducts the pan gesture.

Upon UIGestureRecognizerStateEnded you can remove the UIAttachmentBehavior, but then apply a UIDynamicItemBehavior to have the animation seamlessly continue with the same linear and angular velocities the user was dragging it when they let go of it (don't forget to use an action block to determine when the view no longer intersects the superview, so you can remove the dynamic behavior and probably the view, too). Or, if your logic determines that you want to return it back to the original location, you can use a UISnapBehavior to do so.

Frankly, on the basis of this short clip, it's a little tough to determine precisely what they're doing, but these are the basic building blocks.


For example, let's assume you create some view you want to drag off the screen:

UIView *viewToDrag = [[UIView alloc] initWithFrame:...]; viewToDrag.backgroundColor = [UIColor lightGrayColor]; [self.view addSubview:viewToDrag];  UIGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)]; [viewToDrag addGestureRecognizer:pan];  self.animator = [[UIDynamicAnimator alloc] initWithReferenceView:self.view]; 

You can then create a gesture recognizer to drag it off the screen:

- (void)handlePan:(UIPanGestureRecognizer *)gesture {     static UIAttachmentBehavior *attachment;     static CGPoint               startCenter;      // variables for calculating angular velocity      static CFAbsoluteTime        lastTime;     static CGFloat               lastAngle;     static CGFloat               angularVelocity;      if (gesture.state == UIGestureRecognizerStateBegan) {         [self.animator removeAllBehaviors];          startCenter = gesture.view.center;          // calculate the center offset and anchor point          CGPoint pointWithinAnimatedView = [gesture locationInView:gesture.view];          UIOffset offset = UIOffsetMake(pointWithinAnimatedView.x - gesture.view.bounds.size.width / 2.0,                                        pointWithinAnimatedView.y - gesture.view.bounds.size.height / 2.0);          CGPoint anchor = [gesture locationInView:gesture.view.superview];          // create attachment behavior          attachment = [[UIAttachmentBehavior alloc] initWithItem:gesture.view                                                offsetFromCenter:offset                                                attachedToAnchor:anchor];          // code to calculate angular velocity (seems curious that I have to calculate this myself, but I can if I have to)          lastTime = CFAbsoluteTimeGetCurrent();         lastAngle = [self angleOfView:gesture.view];          typeof(self) __weak weakSelf = self;          attachment.action = ^{             CFAbsoluteTime time = CFAbsoluteTimeGetCurrent();             CGFloat angle = [weakSelf angleOfView:gesture.view];             if (time > lastTime) {                 angularVelocity = (angle - lastAngle) / (time - lastTime);                 lastTime = time;                 lastAngle = angle;             }         };          // add attachment behavior          [self.animator addBehavior:attachment];     } else if (gesture.state == UIGestureRecognizerStateChanged) {         // as user makes gesture, update attachment behavior's anchor point, achieving drag 'n' rotate          CGPoint anchor = [gesture locationInView:gesture.view.superview];         attachment.anchorPoint = anchor;     } else if (gesture.state == UIGestureRecognizerStateEnded) {         [self.animator removeAllBehaviors];          CGPoint velocity = [gesture velocityInView:gesture.view.superview];          // if we aren't dragging it down, just snap it back and quit          if (fabs(atan2(velocity.y, velocity.x) - M_PI_2) > M_PI_4) {             UISnapBehavior *snap = [[UISnapBehavior alloc] initWithItem:gesture.view snapToPoint:startCenter];             [self.animator addBehavior:snap];              return;         }          // otherwise, create UIDynamicItemBehavior that carries on animation from where the gesture left off (notably linear and angular velocity)          UIDynamicItemBehavior *dynamic = [[UIDynamicItemBehavior alloc] initWithItems:@[gesture.view]];         [dynamic addLinearVelocity:velocity forItem:gesture.view];         [dynamic addAngularVelocity:angularVelocity forItem:gesture.view];         [dynamic setAngularResistance:1.25];          // when the view no longer intersects with its superview, go ahead and remove it          typeof(self) __weak weakSelf = self;          dynamic.action = ^{             if (!CGRectIntersectsRect(gesture.view.superview.bounds, gesture.view.frame)) {                 [weakSelf.animator removeAllBehaviors];                 [gesture.view removeFromSuperview];                  [[[UIAlertView alloc] initWithTitle:nil message:@"View is gone!" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];             }         };         [self.animator addBehavior:dynamic];          // add a little gravity so it accelerates off the screen (in case user gesture was slow)          UIGravityBehavior *gravity = [[UIGravityBehavior alloc] initWithItems:@[gesture.view]];         gravity.magnitude = 0.7;         [self.animator addBehavior:gravity];     } }  - (CGFloat)angleOfView:(UIView *)view {     // http://stackoverflow.com/a/2051861/1271826      return atan2(view.transform.b, view.transform.a); } 

That yields (showing both the snap behavior if you don't drag down, as well as the dynamic behavior if you successfully drag it down):

UIDynamics demo

This is only a shell of a demonstration, but it illustrates using a UIAttachmentBehavior during the pan gesture, using a UISnapBehavior if you want to snap it back if you conclude you want to reverse the gesture's animation, but using UIDynamicItemBehavior to finish the animation of dragging it down, off the screen, but making the transition from the the UIAttachmentBehavior to the final animation as smooth as possible. I also added a little gravity at the same time as that final UIDynamicItemBehavior so that it smoothly accelerates off the screen (so it doesn't take too long).

Customize this as you see fit. Notably, that pan gesture handler is unwieldy enough that I might contemplate creating a custom recognizer to clean up that code. But hopefully this illustrates the basic concepts in using UIKit Dynamics to drag a view off the bottom of the screen.

like image 140
Rob Avatar answered Sep 19 '22 06:09

Rob