Reputation: 510
subjectLabel.text = NSLocalizedString(@"Kind Information", @"Info Label");
or
message.text= NSLocalizedString(@"Something Message",nil);
which is the correct one and what is the difference between these 2 examples?
Upvotes: 0
Views: 443
Reputation: 100541
The correct way is
subjectLabel.text = NSLocalizedString(@"Kind Information", @"Info Label");
Upvotes: 1