FWShadowableScroll 1.0.1

FWShadowableScroll 1.0.1

Maintained by Felipe Leite.



  • By
  • Felipe Leite

FWShadowableScroll

Version License Platform

Example

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

Basic configuration with a UIScrollView:

@IBOutlet weak var scrollView: UIScrollView!

override func viewDidLoad() {
    super.viewDidLoad()
    
    scrollView.shouldShowScrollShadow = true
    scrollView.shadowRadius = 10.0 // Default is 4.0
    scrollView.shadowHeight = 10.0 // Default is 4.0
}

Even easier: shouldShowScrollShadow is an IBInspectable so it can be set through Interface Builder.

Installation

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

pod 'FWShadowableScroll'

License

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