The asynchronous option allows you to report progress and utilize your data immediately and do with it whatever you wish while the synchronous option requires you wait until the entire data has been retrieved, possibly an issue if you have data of any size. Also, for UI responsiveness, the synchronous option really only makes sense on a secondary thread while the asynchronous option can be fully performed on the main thread.
- Gary L. Wade (Sent from my iPhone) On Jun 26, 2011, at 9:37 AM, R <r4eem...@gmail.com> wrote: > Any opinions on which approach is better..... > > > NSData *data = [NSURLConnection sendSynchronousRequest:request > returningResponse:&response > error:&error]; > > OR > > connectionInProgress=[[NSURLConnection alloc]initWithRequest:request > delegate:self > startImmediately:YES]; > } > > > - (void)connection:(NSURLConnection *)connection didReceiveData: > (NSData *)data{ > } > > - (void)connection:(NSURLConnection *)connection didFailWithError: > (NSError *)error{ > } > > - (void)connectionDidFinishLoading:(NSURLConnection *)connection{ > } _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com