UIView的放大动画

来源:互联网 发布:安装双系统xp和linux 编辑:程序博客网 时间:2024/05/02 13:19

     self.splashBg.transform =CGAffineTransformIdentity;

    [UIViewbeginAnimations:nilcontext:NULL];

    /* Make the animation 5 seconds long */

    [UIViewsetAnimationDuration:Animation_Duration];

    //图形放大两倍

    self.splashBg.transform =CGAffineTransformMakeScale(1.04f,1.04f);

    /* Commit the animation */

    [UIViewcommitAnimations];

0 0
原创粉丝点击