2017-03-03 85 views
0

我試圖將UIImageView移動到頂部,底部,左側和右側。動畫應該四次四次。中心圖像向上移動,然後移到左側位置和右側位置。我怎樣才能使用UIAnimation Swift 3來實現這一點?Swift3中的UIView動畫

​​

如何使用動畫將圖像移動到頂部,左側,右側和底部?

+0

您可以將UIImageView的中心動畫到您的首選位置 – Mannopson

回答

0
UIView.animate(withDuration: 1, delay:0, animations: { 
     //top 
     self.tempVW.frame.origin.y = self.tempVW.frame.origin.y - 100 
    }, completion: {completion in 
     UIView.animate(withDuration: 1, delay:0, animations: { 
      //left 
      self.tempVW.frame.origin.x = self.tempVW.frame.origin.x - 100 

     }, completion: {completion in 
      UIView.animate(withDuration: 1, delay:0, animations: { 
       //bottom 
       self.tempVW.frame.origin.y = self.tempVW.frame.origin.y + 100 

      }, completion: {completion in 
       UIView.animate(withDuration: 1, delay:0, animations: {      //right 
        self.tempVW.frame.origin.x = self.tempVW.frame.origin.x + 100 
       }, completion: {completion in 


       }) 
      }) 
     }) 

    }) 
0
UIView.animate(withDuration: 1, delay:0, animations: { 
     //top 
     self.imageView.frame.origin.y = self.imageView.frame.origin.y - 100 
    }, completion: {completion in 
     UIView.animate(withDuration: 1, delay:0, animations: { 
      //bottom 
      self.imageView.frame.origin.y = self.imageView.frame.origin.y + 100 
     }, completion: {completion in 
      UIView.animate(withDuration: 1, delay:0, animations: { 
       //left 
       self.imageView.frame.origin.x = self.imageView.frame.origin.x - 100 

      }, completion: {completion in 
       UIView.animate(withDuration: 1, delay:0, animations: { 

       }, completion: {completion in 
        //right 
        self.imageView.frame.origin.x = self.imageView.frame.origin.x + 100 
       }) 
      }) 
     }) 

    }) 
2

您應該使用關鍵幀動畫這一點,因爲它允許你指定的動畫順序。以下是一個基本示例:

let animationDuration = 2.0 
let position: CGFloat = 50.0 
let viewToAnimate = UIImageView() 

UIView.animateKeyframes(withDuration: animationDuration, delay: 0.0, options: .calculationModeLinear, animations: { 
    UIView.addKeyframe(withRelativeStartTime: 0, relativeDuration: 1/3, animations: { 
     viewToAnimate.frame.origin.y = viewToAnimate.frame.origin.y + position 
    }) 
    UIView.addKeyframe(withRelativeStartTime: 1/4, relativeDuration: 1/4, animations: { 
     viewToAnimate.frame.origin.y = viewToAnimate.frame.origin.y - (position * 2) 
    }) 
    UIView.addKeyframe(withRelativeStartTime: 2/4, relativeDuration: 1/4, animations: { 
     viewToAnimate.frame.origin.x = viewToAnimate.frame.origin.x - position 
    }) 
    UIView.addKeyframe(withRelativeStartTime: 3/4, relativeDuration: 1/4, animations: { 
     viewToAnimate.frame.origin.x = viewToAnimate.frame.origin.x + (position * 2) 
    }) 
}, completion: { completed in 

})