Is there a way to know what the current system cursor on mac/ OSX is ? I know we can get current cursor using [NSCursor currentSystemCursor]
call. But this does not tell us what the current cursor is. The check
if ([[NSCursor currentSystemCursor] isEqual:[NSCursor arrowCursor]])
always fails. Even the check if ([[NSCursor currentSystemCursor] isEqual:[NSCursor currentSystemCursor]])
always returns zero.
I have gone through similar question How to get current type of mouse cursor in Mac OS X? but did not find any way of doing it there.
Any help on this is appreciated. Thanks in advance.