why are we using here 5 parameters for stringWithFormat :
return [NSString stringWithFormat:NSLocalizedString(@"LatLongFormat", @"LatLongFormat"), fabs(self.coordinate.latitude), latString, fabs(self.coordinate.longitude), lonString];
i guess the second param is the value for the third param, the key, but what about the first parameter?
Thanks for your answer
I’m not sure i understand well your question but you can use as many parameters as you want for stringWithformat method. It will build a string according to these parameters.
mystring will contain “I build 1 nice string”.