Skip to content

oztc/AMScrollingNavbar

 
 

Repository files navigation

AMScrollingNavbar

Build Status Cocoapods Analytics

Scrollable UINavigationBar that follows the scrolling of a UIScrollView or similar view (e.g. UITableView or UIWebView). It works like the navigation bar in Chrome or Facebook's app for iOS7.

I also wrote about this control in this article

Screenshot

AMScrollingNavbar

Getting Started

Setup

  • Add pod 'AMScrollingNavbar' to your Podfile
  • Run pod install
  • Run open App.xcworkspace
  • Import UIViewController+ScrollingNavbar.h in your controller
  • Implement the two following methods:
- (void)viewWillDisappear:(BOOL)animated
{
	[super viewWillDisappear:animated];
	[self showNavBarAnimated:NO];
}

Enable the scrolling

To enable the scrolling effect you simply need to call followScrollView: providing the UIView's instance that will be tracked, like this:

[self followScrollView:self.scrollView];

You can also set a delay (in points) for the gesture that reveals the navigation bar.

[self followScrollView:self.scrollView withDelay:60];

Make sure to have a barTintColor for your UINavigationBar, or you won't see the fade-in and fade-out effects. Also make sure that you are not using a translucent navigation bar. E.g., in your controller:

[self.navigationController.navigationBar setTranslucent:NO];

Set the view constraints

Make sure to set your scrollview's constraint properly. Please note that the library changes the scrollview's superview frame.

AMScrollingNavbar

Quick Setup Video

You can find a video with the full setup here

MIT License

The MIT License (MIT)

Copyright (c) 2013 Andrea Mazzini

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Bitdeli Badge

About

Scrollable UINavigationBar that follows the scrolling of a UIScrollView

Resources

License

Stars

Watchers

Forks

Packages

No packages published