Search code examples
swiftautolayoutswift4ios-autolayoutsnapkit

Using snapkit / autolayout with UIScrollView


I have an app that will have a

  • scrollView
    • contentView
      • chart
      • buttons
      • other stuff

I tried constraining it like shown below, but I am missing a constraint and I can't find out what I need.

    self.view.addSubview(self.scrollView)
    self.scrollView.snp.makeConstraints { (make) in
        make.edges.equalTo(self.view)
    }
    let contentView = UIView()

    self.scrollView.addSubview(contentView)
    contentView.snp.makeConstraints { (make) in
        make.top.bottom.equalTo(self.scrollView)
        make.left.right.equalTo(self.view)
    }
    contentView.addSubview(self.chart)
    self.chart.snp.makeConstraints { (make) in
        // http://snapkit.io/docs/
        make.edges.equalTo(contentView).inset(UIEdgeInsets(top: 30, left: 0, bottom: 50, right: 0))
    }

where scrollView = UIScrollView()


Solution

  • You need to add width/height or alignment constraints for contentView. Try this:

    contentView.snp.makeConstraints { (make) in
        make.top.bottom.equalTo(self.scrollView)
        make.left.right.equalTo(self.view)
        make.width.equalTo(self.scrollView)
        make.height.equalTo(self.scrollView)
        // or:
        // make.centerX.equalTo(self.scrollView)
        // make.centerY.equalTo(self.scrollView)
    }