您好,我的问题是我的 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 在不同的类中。