Popularity
7.7
Declining
Activity
0.0
Stable
1,568
36
90

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: UI    
Latest version: v3.1.1

SAHistoryNavigationViewController alternatives and similar libraries

Based on the "UI" category.
Alternatively, view SAHistoryNavigationViewController alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of SAHistoryNavigationViewController or a related project?

Add another 'UI' Library

README

SAHistoryNavigationViewController

Platform Language Version License

Support 3D Touch for iOS9!!

[](./SampleImage/touch.gif) [](./SampleImage/3dtouch.gif) [](./SampleImage/sample.gif)

SAHistoryNavigationViewController realizes iOS task manager like UI in UINavigationContoller.

ManiacDev.com referred.
https://maniacdev.com/2015/03/open-source-component-enhancing-the-back-button-with-view-history-navigation

Features

  • [x] iOS task manager like UI
  • [x] Launch Navigation History with Long tap action of Back Bar Button
  • [x] Support Swift2.0
  • [x] Support 3D Touch (If device is not supported 3D Touch, automatically replacing to long tap gesture.)
  • [x] Support Swift2.3
  • [x] Sipport Swift3

Installation

CocoaPods

SAHistoryNavigationViewController is available through CocoaPods. If you have cocoapods 0.38.0 or greater, you can install it, simply add the following line to your Podfile:

pod "SAHistoryNavigationViewController"

Manually

Add the [SAHistoryNavigationViewController](./SAHistoryNavigationViewController) directory to your project.

Usage

If you install from cocoapods, You have to write import SAHistoryNavigationViewController.

Storyboard or Xib

[](./SampleImage/storyboard.png)

Set custom class of UINavigationController to SAHistoryNavigationViewController. In addition, set module to SAHistoryNavigationViewController.

Code

You can use SAHistoryNavigationViewController as self.sah.navigationController in any ViewController, bacause implemented extension SAHistoryExtension as below codes.

public protocol SAHistoryCompatible {
    associatedtype CompatibleType
    var sah: CompatibleType { get }
}

public extension SAHistoryCompatible {
    public var sah: SAHistoryExtension<Self> {
        return SAHistoryExtension(self)
    }
}

public final class SAHistoryExtension<Base> {
    public let base: Base
    public init(_ base: Base) {
        self.base = base
    }
}

extension UIViewController: SAHistoryCompatible {}

extension SAHistoryExtension where Base: UIViewController {
    public var navigationController: SAHistoryNavigationViewController? {
        return base.navigationController as? SAHistoryNavigationViewController
    }
}

And you have to initialize like this.

let ViewController = UIViewController()
let navigationController = SAHistoryNavigationViewController()
navigationController.setViewControllers([ViewController], animated: true)
presentViewController(navigationController, animated: true, completion: nil)

If you want to launch Navigation History without long tap action, use this code.

//In any UIViewController
self.sah.navigationController?.showHistory()

Customize

If you want to customize background of Navigation History, you can use those methods.

//In any UIViewController
self.sah.navigationController?.contentView
self.sah.navigationController?.historyBackgroundColor

This is delegate methods.

@objc public protocol SAHistoryNavigationViewControllerDelegate: NSObjectProtocol {
    optional func historyControllerDidShowHistory(controller: SAHistoryNavigationViewController, viewController: UIViewController)
}

Requirements

Author

Taiki Suzuki, [email protected]

License

SAHistoryNavigationViewController is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the SAHistoryNavigationViewController README section above are relevant to that project's source code only.