首页 > 其他 > 详细

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

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

需求:利用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)的使用

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!