This code is not saving "Add notes" into placeholderText, but instead it is saving just "blog_add_notes". I also tried to cast it to String but it doesn't work.
- (void)viewDidLoad {
[super viewDidLoad];
[self initValues];
NSString *placeholderText = NSLocalizedString(@"blog_add_notes", @"");
_txtDescription.placeholder = placeholderText;
//more code
}
But when I print po NSLocalizedString(@"blog_add_notes", @"")
it prints in fact "Add notes"
What I'm doing wrong?