我需要如何发送 http 删除请求,我已经实现了下面的代码
- (void) deleteSyncRequestWithURL:(NSString *) url
{
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:url]];
[request setHTTPMethod:@"DELETE"];
_connection = [[NSURLConnection connectionWithRequest:request delegate:self] retain];
}
但我有一个 404 状态。
有谁知道我错过了什么?
PS:我使用的是 xcode 3.2.3,模拟器 4.0