objective c - NSURLConnection not return data -
i have nsurlconnection has been working while , of sudden not working. for reason, delegate method gets called is: -(void)connection:(nsurlconnection *)connection didreceiveresponse: none of other delegate methods called. have other classes uses pretty same code, different request , url , seem work fine. have read alot of post talk making sure connection on same thread delegate etc nothing seems work me. know server returning response because if pass same information through simple html form response in browser, , can see evidence server side script running because can see changes making in sql data. , app getting sort of resonse, not getting data or calling connectiondidfinishloading delegate method. any ideas of problem might be? here simplified version on code: #import "registrationviewcontroller.h" @interface registrationviewcontroller () @end nsmutabledata *responsedata; nsurlconnection *theconnection; @implementation registrationviewcontroller /* *...