I am sorry if this is an FAQ, but what is the difference between the two statements below? I have been looking on google and also on Apples documentation and I can't seem to find a salid difference. My best guess is the localised one is optimised to be updated at runtime. Could anyone kindly clarify for me?
NSString *title1 = [NSString localizedStringWithFormat:@"%@, %@", @"1", @"2"];
.
NSString *title2 = [NSString stringWithFormat:@"%@, %@", @"1", @"2"];
much appreciated
gary