这可能很容易,但是我似乎不知道为什么URLWithString:
在这里返回nil。
//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];
webName
致电之前有什么价值stringWithFormat:
?那么,stringURL
致电之前的价值是什么URLWithString:
?用于NSLog()
逐步打印它们,或设置断点并检查设置的值。