在安排向NSUserNotificationCenter发送NSUserNotification时,是否有办法设置在每个通知的通知旁边显示的图像/徽标?
我想要一个稍微不同的徽标,以显示不同类型的通知。有什么想法吗?
发布于 2012-11-11 02:03:05
对于Mountain Lion来说,它并不存在。如果你愿意,你可以在这里申请https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/wa/signIn
发布于 2013-11-23 08:22:42
你可以很容易地在OSX mavericks中用这种方式设置Image。
在AppDelegate.h文件中添加以下行:
@property (copy) NSImage *contentImage NS_AVAILABLE(10_9, NA);在AppDelegate.m中
notification.contentImage = [NSImage imageNamed:@"test.jpg"];https://stackoverflow.com/questions/13324393
复制相似问题