你好我的问题是我的NSURLConnection的委托方法没有被调用,我读了同样的问题的其他帖子,但我无法解决这个问题。
@implementation firstViewController
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[sendData sendValues];
});
end
other class
@interface SendInformation //this class extend NSObject<NSURLConnectionDataDelegate>
-(void)sendValues{
.......
NSURLConnection *conn = [[NSURLConnection alloc] init];
(void)[conn initWithRequest:request delegate:self];
}
end
连接正在工作(我在SendInformation.m中有所有委托方法)问题是我从来没有得到响应,我读到你需要在主线程中运行连接,但如果我这样做,那么接口将冻结,直到连接完成,我也希望NSURLConnection在另一个类中。
答案 0 :(得分:0)
您创建连接的代码很奇怪。你想要:
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
当然self
必须实施所有适当的NSURLConnectionDelegate
方法。