• Stars
    star
    6,053
  • Rank 6,325 (Top 0.2 %)
  • Language
    Swift
  • License
    MIT License
  • Created over 10 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Scrollable UINavigationBar that follows the scrolling of a UIScrollView

CocoaPods Build status Carthage compatible Swift 5 Join the chat at https://gitter.im/andreamazz/AMScrollingNavbar Donate

A custom UINavigationController that enables the scrolling of the navigation bar alongside the scrolling of an observed content view

Versioning notes

  • Version 2.x is written as a subclass of UINavigationController, in Swift.
  • Version 2.0.0 introduced Swift 2.0 syntax.
  • Version 3.0.0 introduced Swift 3.0 syntax.
  • Version 4.0.0 introduced Swift 4.0 syntax.
  • Version 5.1.0 introduced Swift 4.2 syntax.

If you are looking for the category implementation in Objective-C, make sure to checkout version 1.x and prior, although the 2.x is recomended.

Screenshot

Setup with CocoaPods

pod 'AMScrollingNavbar'

use_frameworks!

Setup with Carthage

github "andreamazz/AMScrollingNavbar"

Usage

Make sure to use ScrollingNavigationController instead of the standard UINavigationController. Either set the class of your UINavigationController in your storyboard, or create programmatically a ScrollingNavigationController instance in your code.

Use followScrollView(_: delay:) to start following the scrolling of a scrollable view (e.g.: a UIScrollView or UITableView).

Swift

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)

    if let navigationController = navigationController as? ScrollingNavigationController {
        navigationController.followScrollView(tableView, delay: 50.0)
    }
}

Objective-C

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];

    [(ScrollingNavigationController *)self.navigationController followScrollView:self.tableView delay:0 scrollSpeedFactor:1 collapseDirection:NavigationBarCollapseDirectionScrollDown followers:nil];
}

Use stopFollowingScrollview() to stop the behaviour. Remember to call this function on disappear:

override func viewDidDisappear(_ animated: Bool) {
    super.viewDidDisappear(animated)

    if let navigationController = navigationController as? ScrollingNavigationController {
        navigationController.stopFollowingScrollView()
    }
}

ScrollingNavigationViewController

To DRY things up you can let your view controller subclass ScrollingNavigationViewController, which provides the base setup implementation. You will just need to call followScrollView(_: delay:):

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)

    if let navigationController = navigationController as? ScrollingNavigationController {
        navigationController.followScrollView(tableView, delay: 50.0)
    }
}

Followers

To move another view, like a toolbar, alongside the navigation bar you can provide the view or multiple views as the followers parameter. Since you might want to have the follower up or down, you'll have to specify the scroll direction of the view once it starts to follow the navigation bar:

if let navigationController = navigationController as? ScrollingNavigationController {
    navigationController.followScrollView(tableView, delay: 50.0, followers: [NavigationBarFollower(view: customFooter, direction: .scrollDown)])
}

Note that when navigating away from the controller the followers might keep the scroll offset. Refer to Handling navigation for proper setup.

Additional scroll

If you want to furhter scroll the navigation bar out of the way, you can use the optional parameter additionalOffset in the followScrollView call.

Scrolling the TabBar

You can also pass a UITabBar in the followers array:

if let navigationController = navigationController as? ScrollingNavigationController {
    navigationController.followScrollView(tableView, delay: 50.0, followers: [tabBarController.tabBar])
}

ScrollingNavigationControllerDelegate

You can set a delegate to receive a call when the state of the navigation bar changes:

if let navigationController = navigationController as? ScrollingNavigationController {
    navigationController.scrollingNavbarDelegate = self
}

Delegate function:

func scrollingNavigationController(_ controller: ScrollingNavigationController, didChangeState state: NavigationBarState) {
    switch state {
    case .collapsed:
        print("navbar collapsed")
    case .expanded:
        print("navbar expanded")
    case .scrolling:
        print("navbar is moving")
    }
}

Handling navigation

If the view controller with the scroll view pushes new controllers, you should call showNavbar(animated:) in your viewWillDisappear(animated:):

override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(animated)
    if let navigationController = navigationController as? ScrollingNavigationController {
      navigationController.showNavbar(animated: true)
    }
}

Scrolling to top

When the user taps the status bar, by default a scrollable view scrolls to the top of its content. If you want to also show the navigation bar, make sure to include this in your controller:

func scrollViewShouldScrollToTop(_ scrollView: UIScrollView) -> Bool {
    if let navigationController = navigationController as? ScrollingNavigationController {
        navigationController.showNavbar(animated: true, scrollToTop: true)
    }
    return true
}

Scroll speed

You can control the speed of the scrolling using the scrollSpeedFactor optional parameter:

controller.followScrollView(view, delay: 0, scrollSpeedFactor: 2)

Check out the sample project for more details.

Changing UINavigationBar.tintColor

AMScrollingNavBar maintains its own copy of the UINavigationBar's tintColor property. You need to notify the AMScrollingNavBar of a tint change by calling navBarTintUpdated():

navigationBar.tintColor = UIColor.red
controller.navBarTintUpdated()

Check out the sample project for more details.

Author

Andrea Mazzini. I'm available for freelance work, feel free to contact me.

Want to support the development of these free libraries? Buy me a coffee β˜•οΈ via Paypal.

Contributors

Syo Ikeda and everyone kind enough to submit a pull request.

MIT License

The MIT License (MIT)

Copyright (c) 2014-2019 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.

More Repositories

1

BubbleTransition

A custom modal transition that presents and dismiss a controller with an expanding bubble effect.
Swift
3,314
star
2

AMPopTip

An animated popover that pops out a given frame, great for subtle UI tips and onboarding.
Swift
3,140
star
3

AMWaveTransition

Custom transition between viewcontrollers holding tableviews
Objective-C
2,376
star
4

SubtleVolume

Replace the system volume popup with a more subtle indicator.
Swift
1,200
star
5

AMTagListView

UIScrollView subclass that allows to add a list of highly customizable tags.
Objective-C
759
star
6

UITextField-Shake

UITextField category that adds shake animation
Objective-C
738
star
7

GearRefreshControl

A custom animation for the UIRefreshControl
Swift
618
star
8

UIView-Shake

UIView category that adds shake animation
Objective-C
492
star
9

UIView-draggable

UIView category that adds dragging capabilities
Objective-C
435
star
10

ViralSwitch

A UISwitch that infects its superview with its tint color.
Objective-C
333
star
11

AMBubbleTableView

AMBubbleTableView
Objective-C
215
star
12

SlideOutNavigation

SlideOut Navigation Controller for iOS.
Objective-C
210
star
13

AMDraggableBlurView

Draggable blurred view.
Objective-C
66
star
14

one-icon-a-day

My 2015's challenge: design an icon a day.
28
star
15

UIView-Notify

UIView category for simple user notifications
Objective-C
12
star
16

AMTextField

A UITextField subclass with some nifty animations
Objective-C
7
star
17

Gitorade

Simple iOS app for educational purposes
Objective-C
3
star
18

iOS2016

Sample project shown in class Β―\_(ツ)_/Β―
Swift
2
star
19

chatberry

A node.js+Express.js+socket.io chat
JavaScript
2
star
20

andreamazz.github.io

Syntax Error
HTML
1
star
21

zsh-peepcodelike

A Peepcode-like ZSH theme with dark background
1
star
22

whoisandrea.me

Code for the personal page http://whoisandrea.me/
CSS
1
star
23

AFHTTPRequestOperationManager-multipart

Adds multipart support for PUT and PATCH methods to the AFHTTPRequestOperationManager
Objective-C
1
star
24

pickdate-rails

Pickdate.js for Rails
Ruby
1
star
25

onealbum

One Album A Day. A simple rails blog
Ruby
1
star