我目前正在制作一个向用户显示通知的应用程序,但它不会显示应用程序图标。
这是我的代码:
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")
如何将我的应用程序图标添加到通知中?
修改
这是我的应用程序图标资产:
这是我的通知。