将应用程序图标添加到NSUserNotification

时间:2015-11-03 18:57:19

标签: swift macos cocoa swift2 nsusernotificationcenter

我目前正在制作一个向用户显示通知的应用程序,但它不会显示应用程序图标。

这是我的代码:

func showNotification(message:String, title:String = "App Name") -> Void {
    let notification = NSUserNotification()
    notification.title = title
    notification.informativeText = message
    NSUserNotificationCenter.defaultUserNotificationCenter().deliverNotification(notification)
}

showNotification("\(song)\n\(artist)",title: "Now Playing")

如何将我的应用程序图标添加到通知中?

修改

这是我的应用程序图标资产:

enter image description here

这是我的通知。

enter image description here

0 个答案:

没有答案