ChrisRockC / MyWiki

点-线-面
0 stars 0 forks source link

更新约束生效 #255

Open ChrisRockC opened 6 years ago

ChrisRockC commented 6 years ago

// 告诉self.view约束需要更新 [self.view setNeedsUpdateConstraints]; // 调用此方法告诉self.view检测是否需要更新约束,若需要则更新,下面添加动画效果才起作用 [self.view updateConstraintsIfNeeded];

[UIView animateWithDuration:0.3 animations:^{ [self.view layoutIfNeeded]; }];