NSUserNotificationAlertStyle plist key not working

后端 未结 4 2054
-上瘾入骨i
-上瘾入骨i 2021-01-12 03:27

I am working on sample user notification on 10.8 however the key NSUserNotificationAlertStyle when i set it to alerts not working, my application still shows it as banner, t

相关标签:
4条回答
  • 2021-01-12 03:37

    It works, but you must

    1. Code sign your application;
    2. Set alert string value for NSUserNotificationAlertStyle key in your app info.plist file;
    3. Make sure they are not turned off in Notifications tab of System Preferences.

    If you already experiment with notifications it will be better to perform it from scratch. Here how you can remove app from User Notification Center.

    0 讨论(0)
  • 2021-01-12 03:40

    According to these two bug reports, the key NSUserNotificationAlertStyle isn't working for anyone at the moment.

    http://openradar.appspot.com/12632111

    http://openradar.appspot.com/12632157

    0 讨论(0)
  • 2021-01-12 03:41

    You don't need to sign your code, but the end user can change your notification type from System Preferences --> notifications (and then he can choose, None/Banner or Alert). See also this post: Add Alert vs Notification flag

    0 讨论(0)
  • 2021-01-12 03:51

    After go through every topics about this issue, I think there might be not very clear in each part, so I try to list all the steps for the developer who might also have this problem. To have the alert notification work, you can follow with Lexandr's sign steps 1,2,3, then you will get it work.

    But if you are in the developing phase, or just have a debug, you still want to see what it looks like in the notification center. You need to open system preference->notifications, find your debug app, and choose the alert style to alerts. Then you can continue to develop without waiting for the sign to see the final result.

    0 讨论(0)
提交回复
热议问题