swift版动画

来源:互联网 发布:串口通讯51单片机 编辑:程序博客网 时间:2024/05/17 03:25
         //创建label            var labela = UILabel(frame: CGRectMake(10,90, 100, 35))            labela.text = "label"            labela.textAlignment = NSTextAlignment.Center            labela.backgroundColor = UIColor.orangeColor()            self.view.addSubview(labela)                        //动画            UIView.beginAnimations("aa", context: nil)            labela.frame.origin.x = 270            UIView.commitAnimations()

0 0