Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A drop-in universal library helps you to manage the navigation bar styles and makes transition animations smooth between different navigation bar styles while pushing or popping a view controller for all orientations. And you don't need to write any line of code for it, it all happens automatically.

License

NotificationsYou must be signed in to change notification settings

MoZhouqi/KMNavigationBarTransition

Repository files navigation

A drop-in universal library helps you to manage the navigation bar styles and makes transition animations smooth between different navigation bar styles while pushing or popping a view controller for all orientations. And you don't need to write any line of code for it, it all happens automatically.

Screenshots

Now

KMNavigationBarTransitionKMNavigationBarTransition

Before

KMNavigationBarTransitionKMNavigationBarTransition

Introduction

The design concept of the library is that what you only need to care about is the background style of the navigation bar in thecurrent view controller, without handling the various background styles while pushing or popping.

The library can capture the background style of the navigation bar in the disappearing view controller when pushing, and when you pop back to the view controller, the navigation bar will restore the previous style, so you don't need to consider the background style after popping. And you also don't need to consider it after pushing, because it is the view controller to be pushed that needs to be considered.

Usage

You don't need to import any header file when using this library, the library usesMethod Swizzling to achieve the effect.

It is recommended to set the default background style of the navigation bar in theviewDidLoad method of the base view controller. When you need to change it, generally, you only need to do it in theviewDidLoad method of thecurrent view controller, but if you need to support peek and pop on 3D Touch, you can do it in theviewWillAppear: method.

The following are some suggestions to set the background style of the navigation bar, and you can see the Example for details.

  • There are two methods to set the background style of the navigation bar,setBackgroundImage:forBarMetrics: andsetBarTintColor:. It is recommended to use the former, you can seeKnown Issues for the details.

  • It is better not to change the value of thetranslucent property arbitrarily after initialization, otherwise the interface layout would be prone to confusion.

  • When the value of thetranslucent property istrue, you can use the following mehod to make the navigation bar transparent:

    navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics:.Default)navigationController?.navigationBar.shadowImage=UIImage() // shadowImage is the 1px line
  • You can change the alpha value of the background color of the navigaiton bar by changing the alpha value of the image in thesetBackgroundImage:forBarMetrics: method.

  • You can use the following method to show or hide the navigation bar inviewWillAppear::

    overridefunc viewWillAppear(animated:Bool){    super.viewWillAppear(animated)    navigationController?.setNavigationBarHidden(hidden, animated: animated)}

    You'd better not do it in neitherviewWillDisappear: nor other methods performing transitions, because it is not easy to manage. Again, what you only need to care about is the style of the navigation bar in thecurrent view controller.

    Of course, you'd better not hide the navigaion bar, it might triggers some apple's bug with interactive pop gesture.

Installation

CocoaPods

You can install the latest release version of CocoaPods with the following command:

$ gem install cocoapods

Simply add the following line to your Podfile:

pod'KMNavigationBarTransition'

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage withHomebrew using the following command:

$ brew update$ brew install carthage

To integrate KMNavigationBarTransition into your Xcode project using Carthage, specify it in yourCartfile:

github "MoZhouqi/KMNavigationBarTransition"

Runcarthage update to build the framework and drag the builtKMNavigationBarTransition.framework into your Xcode project.

Requirements

  • iOS 7.0+

Known Issues

On iOS 8.2 or below, if you set the value of thetranslucent property totrue and set thebarTintColor for the background color, and then change thebarTintColor, the background color of the navigation bar will flash when the interactive transition is cancelled.

To avoid this from happening, it is recommended to usesetBackgroundImage:forBarMetrics: instead ofsetBarTintColor: to change the background color of the navigation bar.

License

KMNavigationBarTransition is released under the MIT license. See LICENSE for details.

About

A drop-in universal library helps you to manage the navigation bar styles and makes transition animations smooth between different navigation bar styles while pushing or popping a view controller for all orientations. And you don't need to write any line of code for it, it all happens automatically.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors9


[8]ページ先頭

©2009-2026 Movatter.jp