it may be very easy, but I don't seems to find out why is URLWithString: returning nil here.
//localisationName is a arbitrary string here
NSString* webName = [localisationName stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString* stringURL = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@,Montréal,Communauté-Urbaine-de-Montréal,Québec,Canadae&output=csv&oe=utf8&sensor=false&key=", webName];
NSURL* url = [NSURL URLWithString:stringURL];

webNamebefore your call tostringWithFormat:? Then, what is the value ofstringURLbefore your call toURLWithString:? UseNSLog()to print them out step by step, or, set breakpoints and inspect the values as they are set. – Kevin Conner Dec 30 '09 at 17:38