我學習使用這個流行的動畫框架在Github上:https://github.com/lkzhao/Hero如何使用英雄框架?
我建了一個測試項目,如:
這是我ViewController
:
class ViewController: UIViewController {
@IBOutlet weak var animationObject: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
isHeroEnabled = true
animationObject.heroModifiers = [.fade, .translate(x:0, y:-250), .rotate(x:-1.6), .scale(1.5)]
}
}
當我運行該項目時,視圖不會移動。我不知道如何使它在Hero
的wiki頁面上工作,那麼有人可以給我一個提示嗎?
現在我運行它與iPhone 6s模擬器,它仍然不動畫 –
你想做什麼喜歡動畫類型? –
只要有效的動畫 –