Animation comprehension in iOS

Source: Internet
Author: User

5 types of animations in IOS

1.0 UIView Animation;

1Uiimageview *imageview1 = [[Uiimageview alloc] initwithimage:[uiimage imagenamed:@"Page1.png"]];2Imageview1.backgroundcolor =[Uicolor Redcolor];3Imageview1.frame = CGRectMake (0,0, -, $);4 [Self.view Addsubview:imageview1];5     6[Uiimageview beginanimations:@"Test"Context:nil];7[Uiimageview setanimationduration:1];8     9Imageview1.image = [UIImage imagenamed:@"Page2"];TenImageview1.backgroundcolor =[Uicolor Yellowcolor]; OneImageview1.frame = CGRectMake ( -, $, -, $); AImageview1.alpha =0.5; -[Uiimageview commitanimations];

Note: Write UIView animation as long as the integration and UIView control can be used UIView animation;

2.0 UIView Block Animation (this is the block package of the UIView code, which is easier in this way)

1Uiimageview * ImageView2 = [[Uiimageview alloc] initwithimage:[uiimage imagenamed:@"Page2.png"]];2Imageview2.frame = CGRectMake (0,0, -, $);3 [Self.view addsubview:imageview2];4[Uiimageview animatewithduration:1.0fDelay1.0fOptions:uiviewanimationoptionallowanimatedcontent animations:^{5Imageview2.image = [UIImage imagenamed:@"Page1"];6Imageview2.frame = CGRectMake ( -, $, -, $);7Imageview2.alpha =0.1f;8} completion:^ (BOOL finished) {//The position at the end of the animation;9Imageview2.frame = CGRectMake ( -,0, -, $);TenImageview2.alpha =1.0f; One}];

Animation comprehension in iOS

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.