1
我有一個UIView,我正在初始化,以100%的視角右側開始「離屏」。我通過以下方式執行此操作:動畫自動佈局`leftAnchor`約束變化
[childView.leftAnchor constraintEqualToAnchor: superview.rightAnchor
constant: 1.0].active = YES;
然後,我想從左側「滑動」視圖。我想也許這樣做:
[UIView animateWithDuration: 5
animations: ^{
[childView.leftAnchor constraintEqualToAnchor: superview.leftAnchor
constant: 1.0].active = YES;
}];
可能會這樣做,但它會立即發生(沒有動畫,它只是'出現')。
是否可以使用自動佈局錨提供動畫?