SwiftyVerticalScrollBar 0.1.0

SwiftyVerticalScrollBar 0.1.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Apr 2016
SPMSupports SPM

Maintained by satoshin2071.



  • By
  • satoshin2071

SwiftyVerticalScrollBar

A custom scrollbar for a UIScrollView or UIScrollView’s subclasses. This is a re-write WKVerticalScrollBar in Swift

Requirements

Swift 2.2

Installation

SwiftyVerticalScrollBar is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SwiftyVerticalScrollBar"

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Example

DemoViewController.swift

override func viewDidLoad() {
        super.viewDidLoad()

        self.scrollBar = SwiftyVerticalScrollBar(frame: CGRectZero, targetScrollView: self.tableView)
        self.view.addSubview(self.scrollBar!)
}

override func viewDidLayoutSubviews() {
        super.viewDidLayoutSubviews()

        self.scrollBar.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)
}

License

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