J jyoti.sawakare macrumors newbie Original poster Mar 5, 2009 #1 sendSynchronousRequest is bloacking my application.
P pigoz macrumors member Mar 5, 2009 #2 Well it is working as expected: as the name suggests it is a synchronous blocking operation. You can either use an asynchronous call, or use your synchronous calls from another thread or better in a custom NSOperation.
Well it is working as expected: as the name suggests it is a synchronous blocking operation. You can either use an asynchronous call, or use your synchronous calls from another thread or better in a custom NSOperation.