Skip to content

Instantly share code, notes, and snippets.

@damijanracel
Created October 11, 2018 14:37
Show Gist options
  • Save damijanracel/d761e8d5380fe16086f9ec13688d2f79 to your computer and use it in GitHub Desktop.
Save damijanracel/d761e8d5380fe16086f9ec13688d2f79 to your computer and use it in GitHub Desktop.
Localized label for struct
class LocalizedLabel: UILabel {
var localizationKey: LocalizationKey?
func set(key localization: Localization) {
self.text = localization.string
self.localizationKey = localization.key
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment