2016-11-19 45 views

回答

6
let stackView = UIStackView() 
stackView.spacing = 10.0  // or whatever you like 
2

如果你有一个自定义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 
    } 
}