码迷,mamicode.com
首页 > 其他好文 > 详细

uiview 动画

时间:2016-06-12 12:08:15      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

    [UIView beginAnimations:nil context:nil];

    [UIView setAnimationDelay:0.1];

    

    if (sender.tag == 0) {

        

        lineLabel.frame = CGRectMake(kScreenWidth / 3 * sender.tag, 40, kScreenWidth / 3, 1);

    }

    if (sender.tag == 1) {

 

        lineLabel.frame = CGRectMake(kScreenWidth / 3 * sender.tag, 40, kScreenWidth / 3, 1);

    }

 

    if (sender.tag == 2) {

 

        lineLabel.frame = CGRectMake(kScreenWidth / 3 * sender.tag, 40, kScreenWidth / 3, 1);

    }

 

    [UIView commitAnimations];

 

 

或者

 

[UIView animateWithDuration:0.3f animations:^{

            

            _lineLabel.frame = CGRectMake(0, 40, kScreenWidth / 3, 1);

        }];

uiview 动画

标签:

原文地址:http://www.cnblogs.com/longjie8556264/p/5577034.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!