Is it possible for several NSURLConnection instances to share one delegate?

2008-06-25 Thread Ling Wang
I can't find a way to identify different NSURLConnection instances in the delegate methods, for NSURLConnection does not offer access to the NSURLRequest used to initialize it. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not po

Re: A cursor bug in DragItemAround example

2008-04-21 Thread Ling Wang
Cursor-tracking glitches, where the cursor doesn't revert when exiting a view, are really common in Cocoa apps. I see them in all kinds of apps, even major Apple ones like Mail and Xcode. I think it's due to bugs in AppKit, unfortunately. These bugs have been around since at least 10.0, but

A cursor bug in DragItemAround example

2008-04-20 Thread Ling Wang
You can see the code at http://developer.apple.com/samplecode/DragItemAround/listing2.html on ADC. The bug is that the cursor reverts to arrowCursor if the item is dragged off the bound calculated at the mouseDown event just before current mouseDragged event, instead of staying closedHandCu