-
-
Save twostraws/a02d4cc09fc7bc16859c to your computer and use it in GitHub Desktop.
// | |
// SimpleScrollingStack.swift | |
// A super-simple demo of a scrolling UIStackView in iOS 9 | |
// | |
// Created by Paul Hudson on 10/06/2015. | |
// Learn Swift at www.hackingwithswift.com | |
// @twostraws | |
// | |
import UIKit | |
class ViewController: UIViewController { | |
var scrollView: UIScrollView! | |
var stackView: UIStackView! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
scrollView = UIScrollView() | |
scrollView.translatesAutoresizingMaskIntoConstraints = false | |
view.addSubview(scrollView) | |
view.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|[scrollView]|", options: .AlignAllCenterX, metrics: nil, views: ["scrollView": scrollView])) | |
view.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|[scrollView]|", options: .AlignAllCenterX, metrics: nil, views: ["scrollView": scrollView])) | |
stackView = UIStackView() | |
stackView.translatesAutoresizingMaskIntoConstraints = false | |
stackView.axis = .Vertical | |
scrollView.addSubview(stackView) | |
scrollView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|[stackView]|", options: NSLayoutFormatOptions.AlignAllCenterX, metrics: nil, views: ["stackView": stackView])) | |
scrollView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|[stackView]", options: NSLayoutFormatOptions.AlignAllCenterX, metrics: nil, views: ["stackView": stackView])) | |
for _ in 1 ..< 100 { | |
let vw = UIButton(type: UIButtonType.System) | |
vw.setTitle("Button", forState: .Normal) | |
stackView.addArrangedSubview(vw) | |
} | |
} | |
override func viewDidLayoutSubviews() { | |
super.viewDidLayoutSubviews() | |
scrollView.contentSize = CGSize(width: stackView.frame.width, height: stackView.frame.height) | |
} | |
} |
Hi cargath!
You need to put this line before add the view "view.heightAnchor.constraintEqualToConstant(100).active = true". It works for me.
@cargath, a UIView has no intrinsic content size like the UIButton. You have to give each one a size so the UIStackView can figure out how to lay it out.
I've managed to make it work adding what @rzulkoski pointed out. Thanks a lot!!
@twostraws I've taken this example and tried to center align the buttons, and it doesn't seem to work, does anyone know why ?
Here's a detailed explanation of this problem: http://stackoverflow.com/q/38074366/502130
UPDATE
I've fixed the center alignment problem by setting an extra equal width constraint on the scrollView with the stackView
scrollView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:[stackView(==scrollView)]", options: .AlignAllCenterX, metrics: nil, views: ["stackView": stackView, "scrollView": scrollView]))
This is great, it really helped me with my project!
Here is a better trick!
Remove this:
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
scrollView.contentSize = CGSize(width: stackView.frame.width, height: stackView.frame.height)
}
And add |
to your constraints:
scrollView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|[stackView]|", options: NSLayoutFormatOptions.AlignAllCenterX, metrics: nil, views: ["stackView": stackView]))
Setting Top and Bottom constraints doesn't mean setting a fixed height on UIScrollView
.
Learned that here.
Awesome! I converted the constraints to SnapKit
and incorporated @DevAndArtist note, you could view the code here.
Why is it .AlignAllCenterX
for both "H" and "V"? Shouldn't it be .AlignAllCenterY
on each second line?
Tap action is not working for StackView objects, how we can add tap gestures for this scroll of stack view.
Hm, when i replace the UIButtons with UIViews, they don't appear. Does anyone know what i am doing wrong?