I've changed my app class type from NSObject to NSApplication and now I get the following message when testing my app:
Could not connect the action buttonClicked: to target of class NSApplication
What does this mean and how can I fix it?
I've changed my app class type from NSObject to NSApplication and now I get the following message when testing my app:
Could not connect the action buttonClicked: to target of class NSApplication
What does this mean and how can I fix it?
NSApplication does not respond to the buttonClicked: method and, therefore, there is no way for the target/action connection to be successfully made.