How to update storyboard localization
So, you localized your Xcode project and release the app. Now you have to add a new button a localize it. How to do it without recreating localization files for your storyboard?
-
Find Object ID for the new UI element you added to the storyboard
ObjectID is 4OI-Q4-Xxk
-
Find localization file for the storyboard
-
Add localization for button’s title
Format for localization string is {ObjectID}.{property to update} = “Localized text”;
"4OI-Q4-Xxk.normalTitle" = "COMBINER";
- UIButton - normalTitle
- UILabel - text
- UISegmentedControl - segmentTitles[ N ]
- UITextField - placeholder