Skip to content

Instantly share code, notes, and snippets.

@LeThinh2511
Created March 1, 2020 14:49
Show Gist options
  • Save LeThinh2511/c5ec01f21309d99963756fed4678cf2c to your computer and use it in GitHub Desktop.
Save LeThinh2511/c5ec01f21309d99963756fed4678cf2c to your computer and use it in GitHub Desktop.
String Extension
import Foundation
extension String {
func localized() -> String {
return Bundle.main.localizedString(forKey: self, value: self, table: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment