Ios development: Implementation of simple animation on the second day, and ios development on the second day

Source: Internet
Author: User

Ios development: Implementation of simple animation on the second day, and ios development on the second day

First of all, you should have some knowledge about views. I will not introduce them here,

First, let's talk about a head-and-tail animation that is basically no longer used.

First set a view UIView * testView = [UIView alloc] init];

Determine the position self. testView. frame = CGRectMake (0, 0, 50, 50 );

Start Animation

[UIView beginAnimations: nil context: nil]

Set animation duration

[UIView setAnimationDuration: 2.0]

Animated Attribute Value

Self. testView. frame = rect;

Self. testView. backgroundColor = [UIColor blueColor];

Submit an animation

[UIView commitAnimations];

 

Block animation is a popular animation method. There are many details to explore, many methods, and attributes to explore.

[UIView animateWithDuration: duration delay: latency usingSpringWithDamping: flexible initialSpringVelocity: animation Running Speed options: animation running mode option animations: ^ {

Code executed during animation running

} Completion: ^ (BOOL finished ){

Code executed after the animation is completed

}];

 

Today, due to the time relationship, we will share such a simple animation here.

 

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.