NSString *urlString = GET_EVENTLIST_URL_STRING;
NSURL *url = [NSURL URLWithString:[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
if (!url)
{
NSString *reason = [NSString stringWithFormat:@"Could not create URL from string %@", GET_EVENTLIST_URL_STRING];
[self.delegate didGetEventListInCorrect:reason];
return;
}
// Create a mutable request because we will append data to it.
theRequest = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval: 30.0];
// Set the HTTP method of the request to POST
[theRequest setHTTPMethod:@"POST"];
if (!theRequest)
{
NSString *reason = [NSString stringWithFormat:@"Could not create URL request from string %@", GET_EVENTLIST_URL_STRING];
[self.delegate didGetEventListInCorrect:reason];
return;
}
theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
===== こんにちは、私はこのコードを持っています。これは私の文字列 "Evento Público" ですが、出力には " úblico " と表示されます。NSUTF8StringEncoding も使用しましたが、これを管理できませんでしたか? 前もって感謝します。