Skip to content

Instantly share code, notes, and snippets.

@Tibb
Created February 7, 2017 14:47
Show Gist options
  • Save Tibb/7aca787579cc0c9492aceb925e46eea4 to your computer and use it in GitHub Desktop.
Save Tibb/7aca787579cc0c9492aceb925e46eea4 to your computer and use it in GitHub Desktop.
Swift extension to ease NSLocalizedString
extension String {
var localized : String {
return NSLocalizedString(self, comment: "")
}
}
//Usage: label.text = "myString".localized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment