私は水平に長方形の矩形を持っているとしましょう。それは青です。私はそれを赤くしたい。しかし、私は色の変化を一方の側で開始し、他方で終了させたい。背景色の変更をアニメーション化する - 横向き
キーフレームアニメーションを使用して、全体のビューを赤から青まで徐々に変化させることができます。徐々に左から右に変更する方法はありますか?
UIView.animateKeyframesWithDuration(2.0 /*Total*/, delay: 0.0, options: UIViewKeyframeAnimationOptions.CalculationModeLinear, animations: {
UIView.addKeyframeWithRelativeStartTime(0.0, relativeDuration: 1/1, animations:{
self.view.backgroundColor = UIColor.redColor()
self.view.layoutIfNeeded()
})
},
completion: { finished in
if (!finished) { return }
})