Asynchronous NSURLConnection with NSOperation

后端 未结 3 1334
逝去的感伤
逝去的感伤 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:22

    This kind of question was asked a zillion time. Delegates are not getting called because as of iOS 4 operations are started on a secondary thread. The thread probably exits before the delegates are called that's all.

    Keep the connection on the main thread and handle the data in a background thread using GCD.

    I'v wrote about all this stuff here : http://cocoaintheshell.com/2011/04/nsurlconnection-synchronous-asynchronous/

    EDIT : Updated link.

提交回复
热议问题