Reputation: 3167
How do you make the mouse cursor disappear in Objective-C? (just the visible mouse cursor, the mouse still needs to work)
Upvotes: 17
Views: 5447
Reputation: 3167
[NSCursor hide];
then to show the cursor again:
[NSCursor unhide];
Upvotes: 31