Swift version: 5.2
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 Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
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.