AMScrollingNavbar alternatives and similar libraries
Based on the "UI" category.
Alternatively, view AMScrollingNavbar alternatives based on common mentions on social networks and blogs.
-
Lottie
An iOS library for a real time rendering of native vector animations from Adobe After Effects. -
MBProgressHUD
Drop-in class for displays a translucent HUD with an indicator and/or labels while work is being done in a background thread. -
AsyncDisplayKit
AsyncDisplayKit is an iOS framework that keeps even the most complex user interfaces smooth and responsive. -
Hero
Supercharged transition engine for iOS. Build your custom view transitions with no code at all. Inspired by Keynote's Magic Move. -
DZNEmptyDataSet
A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display. -
IQKeyboardManager
Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView. -
TTTAttributedLabel
A drop-in replacement for UILabel that supports attributes, data detectors, links, and more -
Material
Material is an animation and graphics framework that allows developers to easily create beautiful applications. -
animated-tab-bar
RAMAnimatedTabBarController is a Swift module for adding animation to tabbar items. -
SkeletonView
An elegant way to show users that something is happening and also prepare them to which contents he is waiting. -
SWTableViewCell
An easy-to-use UITableViewCell subclass that implements a swippable content view which exposes utility buttons (similar to iOS 7 Mail Application) -
MGSwipeTableCell
UITableViewCell subclass that allows to display swippable buttons with a variety of transitions. -
XLForm
XLForm is the most flexible and powerful iOS library to create dynamic table-view forms. Fully compatible with Swift & Obj-C. -
SVPullToRefresh
Give pull-to-refresh & infinite scrolling to any UIScrollView with 1 line of code. http://samvermette.com/314 -
TPKeyboardAvoiding
A drop-in universal solution for moving text fields out of the way of the keyboard in iOS -
ComponentKit
A React-Inspired View Framework for iOS, by Facebook. -
SWRevealViewController
A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps, done right. -
FSPagerView
FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders. -
PageMenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
TSMessages
Show notification views on top of screen such as success, error, warning or messages for iOS. -
FXBlurView
UIView subclass that replicates the iOS 7 realtime background blur effect, but works on iOS 5 and above. -
CSStickyHeaderFlowLayout
UICollectionView replacement of UITableView. Do even more like Parallax Header, Sticky Section Header. -
ViewAnimator
ViewAnimator brings your UI to life with just one line. -
Alerts & Pickers
Advanced usage of native UIAlertController with TextField, DatePicker, PickerView, TableView and CollectionView. -
SideMenu
Simple side menu control in Swift inspired by Facebook. Right and Left sides. Lots of customization and animation options. Can be implemented in Storyboard with no code.
Get performance insights in less than 4 minutes.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of AMScrollingNavbar or a related project?
README
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 ofUINavigationController
, 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.
*Note that all licence references and agreements mentioned in the AMScrollingNavbar README section above
are relevant to that project's source code only.