我需要我的應用從屏幕中心到左下邊緣角移動的視圖。
代碼
要做到這一點,我在動畫的約束。
UIView.animateWithDuration(10, delay: 0, options: UIViewAnimationOptions.Repeat, animations: {
constraintBottomSpace.constant -= 10
constraintLeadingSpace.constant -= 10
self.view.layoutIfNeeded()
}, completion: {(finished: Bool) in})
}
問題
圖像不動。如何對角地移動物體?
非常感謝@Aaron!這很好。 – Cesare
可否請您推薦另一種方式來對角地移動視圖?我們使用的代碼似乎只是讓圖像更大,這不是我們想要做的。再次感謝您的幫助! – Cesare
您可能需要將+10添加到頂部和/或尾部約束! –