I made a subclass of NSButton
class Button: NSButton {
var cursor = NSCursor()
override func resetCursorRects() {
super.resetCursorRects()
addCursorRect(bounds, cursor: .pointingHand)
}
}
on my VC class i have added
let tempBtn = Button()
to call subclass but still no use. What am i doing wrong.
This works for me.