文字列を URL エンコードしようとしていますが、「不正な URL」が原因で NSURLConnection が失敗しています。これが私のURLです:
NSString *address = mp.streetAddress;
NSString *encodedAddress = [address stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *cityState= mp.cityState;
NSString *encodedCityState = [cityState stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *fullAddressURL = [NSString stringWithFormat:@"http://www.zillow.com/webservice/GetDeepSearchResults.htm?zws-id=<X1-ZWz1bivd5de5mz_8xo7s>&address=%@&citystatezip=%@", encodedAddress, encodedCityState];
NSURL *url = [NSURL URLWithString:fullAddressURL];
URL を呼び出す API の例を次に示します。
以下は、正確な住所一致「2114 Bigelow Ave」、「Seattle, WA」の住所の API を呼び出す例です。
http://www.zillow.com/webservice/GetDeepSearchResults.htm?zws-id=<ZWSID>&address=2114+Bigelow+Ave&citystatezip=Seattle%2C+WA
何らかの理由でこの URL に接続できません。誰かが私を助けることができますか?