它可能很容易,但我似乎沒有找到爲什麼URLWithString:
返回零這裏。URLWithString:返回零
//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];
是什麼在調用'stringWithFormat:'之前'webName'的值? 然後,在調用'URLWithString:'之前'stringURL'的值是多少? 使用'NSLog()'將它們一步一步地打印出來,或者設置斷點並檢查它們設置的值。 – 2009-12-30 17:38:30