Achieve the animation effect of switching between multiple uiviews

Source: Internet
Author: User
@ Interface rootviewcontroller () {uiview * view1; uiview * view2; int flag;} @ end @ implementation rootviewcontroller-(void) viewdidload {[Super viewdidload]; flag = 1; uibutton * button = [[uibutton alloc] initwithframe: cgrectmake (130, 65, 50, 35)]; [Button settitle: @ "click" forstate: uicontrolstatenormal]; [Button settitlecolor: [uicolor greencolor] forstate: uicontrolstatenormal]; [Button addtarget: Self action: @ selector (click) forcontrolevents: uicontroleventtouchupinside]; [self. view addsubview: button]; view1 = [[uiview alloc] initwithframe: cgrectmake (0,100,320,480)]; view1.backgroundcolor = [uicolor graycolor]; view2 = [[uiview alloc] initwithframe: cgrectmake (0,100,320,480)]; view2.backgroundcolor = [uicolor orangecolor];}-(void) Click {[uiview beginanimations: Nil context: Nil]; [uiview setanimationduration: 0.6f]; [uiview setanimationtransition: uiviewanimationtransitionflipfromleft forview: Self. view cache: No]; If (flag = 1) {[self. view addsubview: view1]; flag = 2;} else if (flag = 2) {[self. view addsubview: view2]; flag = 1;} [uiview commitanimations];}

 

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.