Skip to content

Instantly share code, notes, and snippets.

@yoching
Created December 22, 2017 06:08
Show Gist options
  • Save yoching/6c632f0f4c508738dc9c19fad557e2fa to your computer and use it in GitHub Desktop.
Save yoching/6c632f0f4c508738dc9c19fad557e2fa to your computer and use it in GitHub Desktop.
class CustomNavigationController: UINavigationController {
var token: NSKeyValueObservation?
override func viewDidLoad() {
super.viewDidLoad()
token = self.observe(\.viewControllers) { observed, change in
print(observed)
print(change)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment