类似于支付宝手势页面 UILabel抖动效果

来源:互联网 发布:135端口还有漏洞吗 编辑:程序博客网 时间:2024/05/16 15:46

/**

 *  UILabel抖动效果

 */

-(void)lockAnimationForView:(UIView*)view

{

    CALayer *lbl = [view layer];

    CGPoint posLbl = [lbl position];

    CGPoint y = CGPointMake(posLbl.x-10, posLbl.y);

    CGPoint x = CGPointMake(posLbl.x+10, posLbl.y);

    CABasicAnimation * animation = [CABasicAnimationanimationWithKeyPath:@"position"];

    [animation setTimingFunction:[CAMediaTimingFunction

                                  functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];

    [animation setFromValue:[NSValuevalueWithCGPoint:x]];

    [animation setToValue:[NSValuevalueWithCGPoint:y]];

    [animation setAutoreverses:YES];

    [animation setDuration:0.08];

    [animation setRepeatCount:3];

    [lbl addAnimation:animation forKey:nil];

}

0 0