2019-06-24a few seconds read (About 35 words)How to embed UIStackView inside UIScrollView in iOSIssue #324 1234567891011view.addSubview(scrollView)scrollView.addSubview(stackView)NSLayoutConstraint.on([ scrollView.pinEdges(view: view), stackView.pinEdges(view: scrollView)])NSLayoutConstraint.on([ stackView.widthAnchor.constraint(equalTo: scrollView.widthAnchor, multiplier: 1.0)]) Updated at 2020-09-07 14:28:15 #swiftiOS