I am encountering a strange error:
2015-04-02 12:20:14.642 test[21167:257788] Failed to connect
(testApp) outlet from (test.AppDelegate) to (NSMenuItem)
This happens because you at one point created an @IBOutlet
for a storyboard element. You then later removed the code (reference) from your swift file.
I created an example where I create two extra @IBOutlets
(I named them 'correctField' and 'incorrectField'- both are incorrect though) and connected them from my storyboard to my swift file.
I then removed the code from my swift file. This generates the log as shown in the following figure :
To remove this kind of log message, you can do the following:
@IBOutlets
) from.This was done in xCode 11