All Projects → sunlubo → Stretchyheaderview

sunlubo / Stretchyheaderview

Licence: apache-2.0
A generic stretchy header for UIScrollView, and allows you to change navigation bar's appearance dynamically.

Programming Languages

swift
15916 projects

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].