hudinwal / StretchyHeaderView

A generic stretchy header for UIScrollView, and allows you to change navigation bar's appearance dynamically.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StretchyHeaderView

StretchyHeaderView

Installation

CocoaPods

Just add pod 'StretchyHeaderView' to your Podfile and go!

In any file you'd like to use StretchyHeaderView in, don't forget to import the framework with import StretchyHeaderView.

Then run pod install or pod update.

Usage

/// Scalable Cover
tableView.addScalableCover(with: UIImage(named: "FullSizeRender.jpg")!)


/// Change navigation bar's appearance dynamically.
navigationBar.barColor = UIColor(colorLiteralRed: 52 / 255, green: 152 / 255, blue: 219 / 255, alpha: 1)

override func viewWillAppear(animated: Bool) {
  super.viewWillAppear(animated)
  let navigationBar = navigationController!.navigationBar
  navigationBar.attachToScrollView(tableView)
}

override func viewWillDisappear(animated: Bool) {
  super.viewWillDisappear(animated)
  let navigationBar = navigationController!.navigationBar
  navigationBar.reset()
}

License

StretchyHeaderView is released under an Apache license. See LICENSE for more information.

About

A generic stretchy header for UIScrollView, and allows you to change navigation bar's appearance dynamically.

License:Apache License 2.0


Languages

Language:Swift 94.6%Language:Ruby 5.4%