如何删除通知横幅但将其保留在OS X的通知中心?

时间:2015-10-29 09:47:10

标签: objective-c xcode macos nsusernotification nsusernotificationcenter

我现在在做什么:

[[NSUserNotificationCenter defaultUserNotificationCenter] removeAllDeliveredNotifications];

所以我的问题是,如何在通知中心留下通知?

1 个答案:

答案 0 :(得分:0)

您可以随时删除它,然后再次添加它,确保NSUserNotificationCenter委托类将shouldPresentNotification方法实现为NO。

  • (BOOL)userNotificationCenter:(NSUserNotificationCenter *)中心  shouldPresentNotification:(NSUserNotification *)nsNotification { 返回NO; }