On Fri, Feb 13, 2009 at 8:55 AM, Alex Curylo <[email protected]> wrote: > Because all -start does is initiate an NSURLConnection. If it's failing to > connect or whatever, I want the operation to stop when the user says so, not > whenever -didFailWithError gets around to being called.
That's not what -cancel is supposed to do. -cancel is simply a way to get -isCancelled to return YES. You check for this at the top of your thread's runloop, and if it is YES then you abort your operation and end the thread. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list ([email protected]) 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 [email protected]
