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

Swift中UIView类方法(animateWithDuration)的使用

时间:2014-06-15 08:26:50      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:swift   animatewith   uiview   动画   ios   

需求:利用Swift语言实现OC语言中UIView类方法

[UIView animateWithDuration:0.5 animations:^{

        bgView.alpha= 1;

 }];

在Swift语言对应的方法为:

class func animateWithDuration(duration: NSTimeInterval, animations: (() -> Void)!)  需要传入的参数有两个:1.duration:动画持续的时间(秒计)2.传入一个方法名(闭包,类似于函数指针--》传入的函数的参数为空,返回值为void)


func hideTabBar(){
        //Swift中调用animateWithDuration方法
        self.tabBar.hidden = true
        UIView.animateWithDuration(0.5, animations: alphaDown)
    }

func alphaDown(){
        bgImageView!.alpha = 0
    }

alphaDown函数实现了BgImageView的alpha值渐变的效果。。。欢迎大家批评指正。。。欢迎大家加入iOS讨论群:爱疯、爱Coding 209476515


Swift中UIView类方法(animateWithDuration)的使用,布布扣,bubuko.com

Swift中UIView类方法(animateWithDuration)的使用

标签:swift   animatewith   uiview   动画   ios   

原文地址:http://blog.csdn.net/zhiwei_qin/article/details/30228901

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