ScrollableStackView 1.0.4

ScrollableStackView 1.0.4

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Oct 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Gürhan Yelikaya.



  • By
  • Gürhan Yerlikaya

ScrollableStackView

Scrollable UIStackView. Scroll your stack view with a smile up on your face. Written in Swift 3. Used Apple’s pure auto layout. If you need to use UIStackView scrollable (like UIScrollView) this is the right library for you. Objective-C and Swift compatible.

Podfile

To install it, simply add the following line to your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'

target 'TargetName' do
    pod "ScrollableStackView"
end

Then, run the following command:

$ pod install

Usage

Sample Code (Swift)

import ScrollableStackView

var scrollable = ScrollableStackView(frame: view.frame)
view.addSubview(scrollable)

// add your views with 
let rectangle = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 55))
rectangle.backgroundColor = UIColor.blue
scrollable.stackView.addArrangedSubview(rectangle)
// ...

Sample Code (Objective-C)

@import ScrollableStackView

ScrollableStackView *scrollable = [[ScrollableStackView alloc] initWithFrame:self.view.frame];
scrollable.stackView.distribution = UIStackViewDistributionFillProportionally;
scrollable.stackView.alignment = UIStackViewAlignmentCenter;
scrollable.stackView.axis = UILayoutConstraintAxisVertical;
[self.view addSubview:scrollable];

UIView *rectangle = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 55)];
[rectangle setBackgroundColor:[UIColor blueColor]];

// add your views with
[scrollable.stackView addArrangedSubview:rectangle]; 
// ...

Example Project

Cocoapods To run the example project, clone the repo, and run

$ pod install

from the Example directory first.

Communication

If you see a way to improve the project :

  • If you need help, use Stack Overflow.
  • If you’d like to ask a general question, use Stack Overflow.
  • If you found a bug, and can provide steps to reliably reproduce it, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request. It’s better to begin with an issue rather than a pull request, though, because we might disagree whether the proposed change is an actual improvement. 😉

Recommend following GitHub Swift Style Guide

Thanks! ✌️

TODO

  • [ ] Add Storyboard in example project
  • [ ] Add toolbar for example project (or UITableView)
  • [ ] Add Carthage support
  • [ ] Add Swift Package Manager support

Author

Gürhan Yerlikaya, [email protected]

License

ScrollableStackView is available under the MIT license. See the LICENSE file for more info.