As the name says, I searched around, but no luck. Is it possible to connect the stack view to a .swift file and then adjust the interval programmatically? Thank!
let stackView = UIStackView() stackView.spacing = 10.0 // or whatever you like
If you have a custom UIStackView
class YourCustomSublcass { //MARK: Initialization of the stackView override init(frame: CGRect) { super.init(frame: frame) self.spacing = 8.0 } required init(coder :NSCoder){ super.init(coder: coder) self.spacing = 8.0 } }
Source: https://habr.com/ru/post/1661313/More articles:How to change error styles in VS code? - visual-studio-codeКак заставить разрешение "android.permission.CAMERA" добавляться в манифест в Codename one - androidThe tmux command does not work during window creation? - terminalSet change function to combine - elixirRuby - how to raise the same error for multiple methods without writing it multiple times? - ruby | fooobar.comHow to split all commits by file? - gitgit merge manipulates history - gitTensor Flow: Weight Interpretation for Weighted Cross-Entropy - tensorflowSelenium - ElementNotVisibleException - pythonOrientation of a class value starting with a space - htmlAll Articles