-
Strings Management
// Set a label's text
label.text = "Population"
// Set a label's text to a localized string
label.text = NSLocalizedString("Population", comment: "Label preceding the population value")
// Load localized string from a specific tablelabel.text = NSLocalizedString("Population", tableName: nil, bundle: .main, value: "Localizable", comment: "Label preceding the population value") // Create a formatted string let format = NSLocalizedString("%d popular languages", comment: "Number of popular languages") label.text = String.localizedStringWithFormat(format, 2)
-
Formatters
let formatter = DateFormatter()
formatter.dateStyle = .full
let str = formatter.string(from: Date()) -
Localization Process
7edefd3f-3dd1-4c45-9618-8a33099e1917.png -
Stringsdict File
- Handling Plurals
- Adaptive Strings
- Localization Export and Import
- Other Resources
-
Testing
cc38490a-cd52-4810-b02c-44909eb1ddbd.png
网友评论