|
//
// UINavigationController+NavigationBack.swift
// PaiaiUIKit
//
// Created by FFIB on 2019/4/26.
// Copyright © 2019 FFIB. All rights reserved.
//
import UIKit
public extension UINavigationController {
func pushViewController<T: UIViewController & NavigationBackViewController>(_ vc: T, animted: Bool = true) {
vc.setupNavigationBackItem()
pushViewController(vc, animated: animted)
}
}
|