|
//
// NavigationBarDelegate.swift
// PaiaiUIKit
//
// Created by ffib on 2019/1/30.
// Copyright © 2019 yb. All rights reserved.
//
import Foundation
public protocol NavigationBarDelegate: class {
func navigationBar(_ navigationBar: UINavigationBar, shouldPush item: UINavigationItem) -> Bool
}
public extension NavigationBarDelegate {
func navigationBar(_ navigationBar: UINavigationBar, shouldPush item: UINavigationItem) -> Bool {
return true
}
}
|