I have a strange issue never seen on iOS
but present on macOS Swift
development.
I have a NSButton
which is added with an addSubview
method to a custom NSView
. The button has a target function.
It is impossible to click on this button when it's added to the customView
. If I add it to the global "view" works fine directly.
Any idea why this could be?
//Infos View
self.infosView.wantsLayer = true
self.infosView.layer?.backgroundColor = NSColor.darkGray.cgColor
self.view.addSubview(self.infosView)
//TestButton
let myButtonRect = CGRect(x: 100, y: 100, width: 200, height: 200)
self.testButton = NSButton.init(frame: myButtonRect)
// !!!!
// this line doesn't work
// !!!!
self.infosView.addSubview(testButton)
// !!!!
// but this line works fine
// !!!!
self.view.addSubview(testButton)
self.testButton.target = self
self.testButton.action = #selector(ViewController.printSomething)
Update : The testButton is not clickable after a CATransform
self.infosView.layer?.transform = CATransform3DMakeTranslation(500, 0, 0)
Doesn't work after this..