I am trying to Localize my app...
I have set the following in ViewController.m
//Lets Play Button
CGRect Play = CGRectMake(self.view.frame.size.width/2-100, self.view.frame.size.height-280, 200, 60);
HTPressableButton *start = [[HTPressableButton alloc] initWithFrame:Play buttonStyle:HTPressableButtonStyleRounded];
start.buttonColor = [UIColor colorWithRed:236/255.0f green:101/255.0f blue:128/255.0f alpha:1.0f];
start.shadowHeight = 0;
start.titleLabel.font = [UIFont fontWithName:@"Intro" size:25];
[start setTitle:NSLocalizedString(@"LetsPlay", nil) forState:UIControlStateNormal];
[start addTarget:self action:@selector(playButtonHandler:) forControlEvents:UIControlEventTouchUpInside];
[newMain addSubview:start];
and set the following in Localizable.strings (This is the Spanish Version)
"LetsPlay"="Beunos Noches!";
"Menu"="Adios!";
But the button is showing the text as 'LetsPlay'
So it is as if the NSLocalizedString(@"LetsPlay")
commmand is not working...
Any ideas?