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

以动画的形式让label等出现消失等

时间:2015-09-26 00:29:38      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

        [UIView animateWithDuration:1.0 animations:^{
            label.alpha=1.0;
        } completion:^(BOOL finished) {
            
            [UIView animateWithDuration:1.0 animations:^{
                label.alpha=0.0;
            } completion:^(BOOL finished) {
                
                [label removeFromSuperview];
                
            }];
        }];

/*

animateWithDuration:持续的时间

animations:^{} :在这个持续的时间内需要完成的事情

animations:^{}:事件完成后进行的操作

*/

 

以动画的形式让label等出现消失等

标签:

原文地址:http://www.cnblogs.com/wanghengheng/p/4839799.html

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