UIView混乱

时间:2015-01-13 13:50:24

标签: ios swift uiview

所有,我试图找出一个UIView,这个代码变大了:

 ColouredSquare.backgroundColor = UIColor(red: 0.84, green: 0.90, blue: 0.95, alpha: 1.0)
    ColouredSquare.frame = CGRect(x: 0, y:50, width: 400, height: 30)
    self.view.addSubview(ColouredSquare)
    UIView.animateWithDuration(1.0, animations: {
        self.ColouredSquare.frame = CGRect(x: 0, y: 50, width: 400, height: 180)
    })

我在视图中添加了一个按钮。 但是按钮在UIView之前绘制。

enter image description here

1 个答案:

答案 0 :(得分:0)

我错过了一些明显的东西吗?

您设置框架:

ColouredSquare.frame = CGRect(x: 0, y:50, width: 400, height: 30)

然后动画是,将高度增加到180:

self.ColouredSquare.frame = CGRect(x: 0, y: 50, width: 400, height: 180)