swift动态修改框架并删除AutoLayout

时间:2015-07-24 08:18:21

标签: ios swift autolayout swift2

我动态修改UILabel框架,每次程序启动时UILabel修改我的位置,但更新后收到的网络数据请求到UI,修改后的UILabel用autoLayout返回到原来的位置。

代码:

override func viewDidAppear(animated: Bool) {
self.label.removeConstraints(self.label.constraints)
}

但仍无法正常工作

感谢关注

1 个答案:

答案 0 :(得分:0)

    override func viewDidAppear(animated: Bool) {
self.label.updateConstraints()
}