Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save OlexandrStepanov/852cd62344dab498b1baec28bbc59145 to your computer and use it in GitHub Desktop.

Select an option

Save OlexandrStepanov/852cd62344dab498b1baec28bbc59145 to your computer and use it in GitHub Desktop.
Swift protocol extension example
import UIKit
protocol AppNavigationProtocol {
var appDelegate: AppDelegate { get }
}
extension AppNavigationProtocol {
var appDelegate: AppDelegate {
return UIApplication.shared.delegate as! AppDelegate
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment