Remove application from Notification Center

前端 未结 11 1821
自闭症患者
自闭症患者 2020-12-08 01:21

Hey I was playing around with making a small cocoa application and using the new Notification Center API in Mountain Lion. However my app is now present in the notification

11条回答
  •  我在风中等你
    2020-12-08 02:17

    Change the code in the project which you were playing around with user notifications in to call

    [[NSUserNotificationCenter defaultUserNotificationCenter] removeAllDeliveredNotifications];
    

    from your app delegate's method -applicationDidFinishLaunching:. This will remove all user notifications from the user notification center.

提交回复
热议问题