This is a swift project that has C bridged. As soon as the C was bridged I got the warning: Instance method 'applicationDidFinishLaunching' nearly matches optional requirement 'applicationDidFinishLaunching' of protocol 'NSApplicationDelegate'
When launched, the func applicationDidFinishLaunching is not called.
This is for MacOS 10.15. Using Xcode 12.3.
When launched, the func applicationDidFinishLaunching is not called.
This is for MacOS 10.15. Using Xcode 12.3.
Thanks for showing your code. Your method header is seemingly right.Here is the code copy and pasted as is: p.s. it is linked with Boost lib (C++)
Can you try changing the method header as follows and tell us what happens?
Code Block func applicationDidFinishLaunching(_ aNotification: AppKit.Notification) { //<- Use `AppKit.Notification` instead of `Notification`