Skip to content

Scrollable UIStackView. Scroll your stack view with a smile up on your face. Objective-C and Swift compatible.

License

Notifications You must be signed in to change notification settings

MarekV24i/ScrollableStackView

 
 

Repository files navigation

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.

Version License Platform

Installation with CocoaPods

CocoaPods is a dependency manager for both Swift and Objective-C. ScrollableStackView is available through CocoaPods. You can install it with the following command:

$ gem install cocoapods

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

Test Drive | Try Now 🚀

You can try library before you add it to your project 🎯 Give it a try:

$ pod try ScrollableStackView

Pod try is a wonderful subcommand which allows you to quickly launch the demo project of a Pod. It can be used to assess the quality of a library – very useful for user interface elements – or to quickly get up to speed on how to use it.

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. (Tag scrollablestackview)
  • 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.

About

Scrollable UIStackView. Scroll your stack view with a smile up on your face. Objective-C and Swift compatible.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 50.2%
  • Swift 42.3%
  • Ruby 4.4%
  • Objective-C 3.1%