问题标签 [nsusernotification]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
cocoa - 如何使用 Cocoa WebView 处理 HTML5 Web 通知?
我使用 Cocoa WebView 来显示发送 HTML5 Web 通知的网站。使用 Safari 浏览此页面时,我直接在 Mac OS X Mountain Lion 的通知中心收到用户通知。
如何通过实现自己的 WebView 来实现相同的行为?我没有看到任何与此功能相关的委托方法。
编辑:如果这可以帮助某人:
https://github.com/jnordberg/irccloudapp/blob/master/NotificationProvider.m
感谢 Johan Nordberg 分享这一点。
nsview - NSUSerNotification 的自定义视图
有没有办法在 Mac OS X 中将自定义视图或窗口显示为 NSUserNotification?我想显示附加信息,例如图像,据我所知,我无法使用标准 NSUserNotification 来做到这一点。如果做不到这一点,有没有办法简单地将通知添加到列表中并显示我自己的弹出窗口?
在此先感谢,本。
cocoa - removeDeliveredNotification:没有
我的 Mac 应用程序中有一些代码执行长时间运行的导出操作。在导出结束时,它会创建一个用户通知,让用户知道它已完成:
然后它会放置一张包含导出详细信息的表格(遇到的警告,方便的“显示”按钮等)。当他们关闭工作表时,我想删除通知,如下所示:
但是,这实际上并没有从通知中心删除通知。我设置了一个断点;该-removeDeliveredNotification:
行已运行,并且note
不为零。是什么赋予了?
objective-c - ObjC:不能继承 NSUserNotification
正如标题所说,我不能子类化NSUserNotification
。好吧,我可以编写和编译子类,但是我不能在运行时获取子类对象:如果我创建该子类的一个实例,然后在运行时测试它的类,我总是会得到_NSConcreteUserNotification
. 为什么?
macos - 在运行时更改 OSX 通知中心图标
(现在)是否有官方支持的方式来在我的应用程序运行时更改 OSX 通知中心的 NSUserNotifications 图标?我在网上搜索,但答案并不是真的“最近”,所以我只是想仔细检查一下。
我想在它的标题/名称旁边显示当前正在播放的 Spotify 曲目的艺术品
到目前为止我尝试过的真的很丑:
暂时用IconFamily生成的 .icns 文件替换我的应用程序的 CFBundleIconFile(我知道我不应该修改包内的任何东西,但我不打算将应用程序放到 App Store)
重新启动通知中心以“忘记”它最终缓存的图标
NSRunningApplication* notificationCenter = [NSRunningApplication runningApplicationsWithBundleIdentifier:@"com.apple.notificationcenterui"]; [通知中心终止];
(我知道我真的不应该这样做)
nsusernotification - NSUserNotificationCenter not showing notifications
I'm not sure if I got something wrong but from the examples I could find. I wrote that little helloworld.
I compile it with:
It compiles and I can execute it but it won't show anything. For some reasons, nothing gets presented. I read that Notifications may not get displayed if the application is the main actor. How can I make it show Notification?
macos - NSUserNotificationAlertStyle plist 键不起作用
我正在处理 10.8 上的示例用户通知,但是当我将键 NSUserNotificationAlertStyle 设置为警报不起作用时,我的应用程序仍将其显示为横幅,这是通过系统首选项控制它的唯一方法,但是如果我想设置默认行为怎么办要警惕的风格??
xcode - 始终显示 NSUserNotification
NSUserNotification
当我的应用程序中发生某些事情时,我会出现以记录下来。即使应用程序是最前面的应用程序(即始终显示它),是否有任何方法可以显示通知?
(如果我在其他应用程序中,它确实会显示)
objective-c - 有没有办法知道 NSUserNotificationCenter 中有多少个 NSUserNotification?
NSUserNotificationCenter
是否有任何非私人方式可以知道Mountain Lion的通知中心 ( ) 中有多少通知?不仅仅是来自我的应用程序的通知,而是来自所有应用程序的通知。
所以,总而言之,我想做的是检索此处显示的通知数量:
我试图四处搜索,但找不到有关此的信息。有任何想法吗?
提前致谢!
python - 如何在 py2app 中包含 NSUserNotificationCenter
我在 mac osx 10.8.5 上的 python 2.7 中制作应用程序我想显示通知次数,因此使用NSUserNotificationCenter
. 在 Eclipse 上运行代码时会收到通知。但是,问题是when I made app using py2app, Notifications are not coming
。此外,打开控制台和终止的默认错误页面即将到来。请提出一些建议,如何在 py2app 生成的 dist 中包含通知,以便它可以在任何其他机器上工作。我的 setup.py 是
我的通知代码是:
在 eclipse 上,通知按预期发出,但是,导入错误会产生在行中:
但在终端这些行运行良好。