Swift version: 5.10
Each UIStackView
has an overall spacing
property that affects spacing between all of its arranged subviews, but in addition you can add custom spacing after specific views – for example, “put 20 points of space under this button.”
To make that happen, use the setCustomSpacing()
method of your stack view, providing it the number of points of spacing you want and the view that should precede the spacing.
For example, this code creates a stack view and a button, adds the button to the stack view, then requests 20 points of spacing after it:
let stackView = UIStackView()
let btn = UIButton()
stackView.addArrangedSubview(btn)
stackView.setCustomSpacing(20, after: btn)
SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 11.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.