3
Personal
I’m using the function NSLocalizedString
in an iOS app but this is not returning the related text I put in a file Localization.strings
that has the content below. Someone could help me to solve this?
label.text = NSLocalizedString(@"MEDICO", nil);
Filing cabinet:
/*
Localization.strings
Hexapod
Created by Celso Melero on 08/06/15.
Copyright (c) 2015 inArts Studio. All rights reserved.
*/
/* Médico */
"MEDICO" = "Doctor";
You can put what is appearing on the screen in the component
label
?– iTSangar
iTSanga, the answer below solved the problem. File name was wrong.
– Celso Melero