现在我正在我的 iOS 应用程序中进行 POST,并且在 POST 中我有这个
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES]; // Edited
所以 - (void)connectionNSURLConnection *)connection didReceiveResponseNSURLResponse *)response { 将在完成后被调用,但不使用连接会发出警告,我知道这不是调用它的正确方法,那么如何声明连接以便调用 didRecieveRespose 和 didReceiveData ?
谢谢
Best Answer-推荐答案 strong>
你可以这样声明:-
(void) [[NSURLConnection alloc] initWithRequest:request delegate:self];
或
[NSURLConnection connectionWithRequest:request delegate:self];
关于ios - 如何调用连接:didReceiveData,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/31237909/
|