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 In-app subscriptions are a pain to implement, hard to test, and full of edge cases. RevenueCat makes it straightforward and reliable so you can get back to building your app. Oh, and it's free if your app makes less than $10k/mo.
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.