Skip to content

Instantly share code, notes, and snippets.

@andr3a88
Last active December 13, 2019 14:26
Show Gist options
  • Save andr3a88/fb9d3f78424643bc3dd5debba54f2557 to your computer and use it in GitHub Desktop.
Save andr3a88/fb9d3f78424643bc3dd5debba54f2557 to your computer and use it in GitHub Desktop.
LocalizedView
import Foundation
protocol LocalizedView {
/// Localized type
var localizer: Localizer { get }
}
extension LocalizedView where Self: UIViewController {
var localizer: Localizer {
let localizableStrings = Settings().configuration?.localizableStrings ?? [:]
return Localizer(localizableStrings: localizableStrings)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment