Files

12 lines
440 B
Swift

//
// JSNavigationControllerDelegate.swift
// JSNavigationController
//
import AppKit
protocol JSNavigationControllerDelegate: AnyObject {
func navigationController(_ navigationController: JSNavigationController, willShowViewController viewController: NSViewController, animated: Bool)
func navigationController(_ navigationController: JSNavigationController, didShowViewController viewController: NSViewController, animated: Bool)
}