You can create outputs for UILabel and UIButton , and then programmatically change the names:
myLabel.text = NSLocalizedString(@"startlabel", "start label"); [myButton setTitle:NSLocalizedString(@"startButton", "start button") forState: UIControlStateNormal];
and do not forget to create Localizable.strings files where you can specify your translations
source share