SettingsNavigationViewController.swift 444 B

1234567891011121314151617181920
  1. //
  2. // SettingsNavigationViewController.swift
  3. // LoopKitUI
  4. //
  5. // Created by Pete Schwamb on 1/29/19.
  6. // Copyright © 2019 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. open class SettingsNavigationViewController: UINavigationController, CompletionNotifying {
  10. open weak var completionDelegate: CompletionDelegate?
  11. open func notifyComplete() {
  12. completionDelegate?.completionNotifyingDidComplete(self)
  13. }
  14. }