How do I animate a NSLayoutConstraint in Swift?

后端 未结 2 1437
情话喂你
情话喂你 2020-12-11 00:52

I would like to animate an UIImageView. I declared a NSLayoutConstraint in viewDidLoad and used this code:

UIView.animate(withDurat         


        
相关标签:
2条回答
  • 2020-12-11 01:38

    By the time you hit viewDidLoad, the constraints engine has not yet been applied and the starting location of the views has not yet been established. So, feel free to add the original constraints in viewDidLoad, but you will want to defer the animateWithDuration until later in the process (e.g. viewDidAppear).


    For example, let's assume you have some constraint that you added in Interface Builder (IB). You can add an@IBOutlet reference to it by control-dragging from the constraint in the document outline in the left panel in Interface Builder down to the assistant editor:

    Now that you have a reference to that constraint, you can now programmatically alter the constant value for that constraint (but, again, do this in viewDidAppear, not viewDidLoad, if you want to see this animated when the view is presented):

    @IBOutlet weak var topConstraint: NSLayoutConstraint!
    
    override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)
    
        topConstraint.constant = 100
        UIView.animate(withDuration: 2) {
            self.view.layoutIfNeeded()
        }
    }
    

    The process is the same for programmatically created constraints. Just save a reference to the constraint and then in viewDidAppear update the constant and then animate the call to layoutIfNeeded().

    0 讨论(0)
  • 2020-12-11 01:41

    Please set your constraint in viewDidAppear and try below correction

    myConstant = 100
    myConstraint.constant = myConstant
    UIView.animateWithDuration(1, animations: {
    self.view.layoutIfNeeded()
    }, completion: {finished in })
    
    0 讨论(0)
提交回复
热议问题