説明なし

UINavigationController + NavigationBack.swift 427B

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