I have subclassed NSButton and created a class of my own, in which I have added the code to show up hand cursor when mouse pointer comes over the button. It's working for buttons that were added in normal views. But when I used the same class for a button inside a model sheet, cursor is not showing up. What might be the reason? Any idea!
This is the code I have added in NSButton subclass
- (void)resetCursorRects {
/*
* change cursor type to a poiting finger when it gets into HyperLink frame.
*/
[super resetCursorRects];
[self addCursorRect:[self bounds] cursor:[NSCursor pointingHandCursor]];
}