Asynchronous NSURLConnection with NSOperation

后端 未结 3 1337
逝去的感伤
逝去的感伤 2020-12-02 23:42

I want to do NSURLConnection in background mode,because it response is having much data.Forums are telling to use Apple\'s finite length coding to use in

3条回答
  •  甜味超标
    2020-12-03 00:41

    Apple provides QHTTPOperation, which does just what you want, encapsulates an NSURLConnection within an NSOperation, for a single request. You can find it in Apple's sample code.

    QHTTPOperation is actually a subclass of QRunLoopOperation which lets you encapsulate logic which depends on run-loop callbacks in an NSOperation.

    The 3rd party ASIHTTPRequest is a similar popular solution, AFAIK it is no longer maintained though.

提交回复
热议问题