I\'ve searched all over the internet but the only method found was by looping through
- (void)userNotificationCenter:(NSUserNotificationCenter *)center didDe
Swift >= 4 version:
@objc func userNotificationCenter(_ center: NSUserNotificationCenter, didDismissAlert notification: NSUserNotification)
Make sure you add the @objc annotation, otherwise the objective-C runtime won't be able to see your delegate method.
@objc