我遇到了一个小问题。我正在连接到使用基本身份验证的 Web 服务,现在我希望用户能够:能够注销,或者每次发出请求时都会进行新的身份验证。现在,身份验证似乎已被缓存。我该怎么做呢?
我试图#
在最后追加,但这似乎没有奏效。URL 具有以下格式:
www.example.org/mywebservice/data
NSURL* url = [NSURL URLWithString: @"www.example.org/mywebservice/data"];
NSURLRequest* request = [[NSURLRequest alloc] initWithURL:url];
NSURLConnection* newConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
self.myConnection = newConnection;
[request release];
[newConnection release];