Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
231 views
in Technique[技术] by (71.8m points)

swift - How to define functionality to be executed after a ui transformation

I have an element I need to animate and I followed this question to transform it as follows.

I defined a button that when I click it, the view would move horizontally. However, I need to define certain functions after the transformation (For example, I would need the print statement to be working after the transformation is completed in 5 seconds). But currently, it is printed simultaneously.

How can I define functionality to be done after the transformation.

   @IBAction func mybutton(_ sender: Any) {
        UIView.animate(withDuration: 5.0) {
            
            self.hhview.transform = CGAffineTransform(translationX: -160, y: 0)
            
            print("Voila!")
        }
        
    }
question from:https://stackoverflow.com/questions/65640960/how-to-define-functionality-to-be-executed-after-a-ui-transformation

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use a completion handler to execute code after the transformation:

UIView.animate(withDuration: 5.0) {
    self.hhview.transform = CGAffineTransform(translationX: -160, y: 0)
} completion: { _ in
    print("Completed")
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...