Add an animation when the iOS button appears.

Source: Internet
Author: User

Add an animation when the iOS button appears.

// Animation effect when a button appears

+ (Void) buttonAnimation :( UIButton *) sender {

CAKeyframeAnimation * animation = [CAKeyframeAnimation animationWithKeyPath: @ "transform"];

CATransform3D scale1 = CATransform3DMakeScale (0.5, 0.5, 1 );

CATransform3D scale2 = CATransform3DMakeScale (1.2, 1.2, 1 );

CATransform3D scale3 = CATransform3DMakeScale (0.9, 0.9, 1 );

CATransform3D scale4 = CATransform3DMakeScale (1.0, 1.0, 1 );

NSArray * frameValues = [NSArray arrayWithObjects:

[NSValue valueWithCATransform3D: scale1],

[NSValue valueWithCATransform3D: scale2],

[NSValue valueWithCATransform3D: scale3],

[NSValue valueWithCATransform3D: scale4],

Nil];

[Animation setValues: frameValues];

NSArray * frameTimes = [NSArray arrayWithObjects:

[NSNumber numberWithFloat: 0.0],

[NSNumber numberWithFloat: 0.5],

[NSNumber numberWithFloat: 0.9],

[NSNumber numberWithFloat: 1.0],

Nil];

[Animation setKeyTimes: frameTimes];

Animation. fillMode = kCAFillModeForwards;

Animation. duration = 0.3f;

[Sender. layer addAnimation: animation forKey: @ "DSPopUpAnimation"];

}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.