Swift version: 5.6
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 An iOS conference hosted in Buenos Aires, Argentina – join us for the third edition from November 29th to December 1st!
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.