매우 쉬울 수도 있지만 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()
단계, 또는 중단 점을 설정하여 단계를 인쇄하고이 설정 될 때 값을 검사합니다.