I have the code like this.
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
[[NSUserNotificationCenter defaultUserNotificationCenter] setDelegate:self];
Also, I implement userNotificationCenter:shouldPresentNotification:. It works fine. However. when the app's window is not focused, this delegate method is not called, and the notification always present.
Any help?