I am trying to understand NSCursor better. I have an animation that takes place in my view and I dont want to allow any mouse or keyboard interaction while the animation is running. That is easy to do. While this is happening I want to display some kind of custom "waiting" cursor which I have been able to do with:
NSCursor *cursor2 = [[NSCursor alloc] initWithImage:[NSImage imageNamed:@"HourGlass"] hotSpot:NSMakePoint(1,1)]; [cursor2 set]; _______________________________________________ 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